fix typo
This commit is contained in:
parent
4de817bd75
commit
f5a80dd0a5
1 changed files with 4 additions and 4 deletions
|
|
@ -182,15 +182,15 @@ class TemplateTransaction(Transaction):
|
||||||
|
|
||||||
template = models.ForeignKey(
|
template = models.ForeignKey(
|
||||||
TransactionTemplate,
|
TransactionTemplate,
|
||||||
null=True
|
null=True,
|
||||||
on_delete=models.SET_NULL
|
on_delete=models.SET_NULL,
|
||||||
)
|
)
|
||||||
category = models.ForeignKey(
|
category = models.ForeignKey(
|
||||||
TemplateCategory,
|
TemplateCategory,
|
||||||
on_delete=models.PROTECT
|
on_delete=models.PROTECT,
|
||||||
)
|
)
|
||||||
name = models.CharField(
|
name = models.CharField(
|
||||||
max_length=255
|
max_length=255,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue