mirror of
https://gitlab.crans.org/bde/nk20
synced 2024-11-26 10:27:07 +00:00
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__'
|