mirror of https://gitlab.crans.org/bde/nk20
10 lines
215 B
Python
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__'
|