1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

add templates forms and tags

This commit is contained in:
Pierre-antoine Comby
2019-08-11 19:55:04 +02:00
parent 075f30d9e5
commit 8b4125a25d
3 changed files with 44 additions and 0 deletions

9
apps/note/forms.py Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
from django import forms
from .models import TransactionTemplate
class TransactionTemplateForm(forms.ModelForm):
class Meta:
model = TransactionTemplate
fields ='__all__'