add templates forms and tags
This commit is contained in:
parent
075f30d9e5
commit
8b4125a25d
3 changed files with 44 additions and 0 deletions
9
apps/note/forms.py
Normal file
9
apps/note/forms.py
Normal 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__'
|
||||
Loading…
Add table
Add a link
Reference in a new issue