fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Str/bytes fix for publishing audiobooks.
[wolnelektury.git]
/
src
/
club
/
models.py
diff --git
a/src/club/models.py
b/src/club/models.py
index
1128070
..
d7be287
100644
(file)
--- a/
src/club/models.py
+++ b/
src/club/models.py
@@
-22,7
+22,8
@@
class Plan(models.Model):
]
interval = models.SmallIntegerField(_('inteval'), choices=intervals)
]
interval = models.SmallIntegerField(_('inteval'), choices=intervals)
- min_amount = models.DecimalField(_('min_amount'), max_digits=10, decimal_places=2)
+ min_amount = models.DecimalField(_('min amount'), max_digits=10, decimal_places=2)
+ default_amount = models.DecimalField(_('default amount'), max_digits=10, decimal_places=2)
allow_recurring = models.BooleanField(_('allow recurring'))
allow_one_time = models.BooleanField(_('allow one time'))
active = models.BooleanField(_('active'), default=True)
allow_recurring = models.BooleanField(_('allow recurring'))
allow_one_time = models.BooleanField(_('allow one time'))
active = models.BooleanField(_('active'), default=True)