mirror of https://gitlab.crans.org/bde/nk20
add description field to transactionTemplates
This commit is contained in:
parent
4fe61fdc5f
commit
cfd881887d
|
@ -40,6 +40,11 @@ class TransactionTemplate(models.Model):
|
|||
max_length=31
|
||||
)
|
||||
|
||||
description = models.CharField(
|
||||
verbose_name=_('description'),
|
||||
max_length=255,
|
||||
)
|
||||
|
||||
class Meta:
|
||||
verbose_name = _("transaction template")
|
||||
verbose_name_plural = _("transaction templates")
|
||||
|
|
Loading…
Reference in New Issue