1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-26 10:27:07 +00:00
nk20/apps/note/forms.py
2019-08-11 19:55:04 +02:00

10 lines
215 B
Python

#!/usr/bin/env python
from django import forms
from .models import TransactionTemplate
class TransactionTemplateForm(forms.ModelForm):
class Meta:
model = TransactionTemplate
fields ='__all__'