12 lines
210 B
Python
12 lines
210 B
Python
|
from django.forms import ModelForm
|
||
|
from .models import Signature
|
||
|
|
||
|
|
||
|
class SignatureForm(ModelForm):
|
||
|
class Meta:
|
||
|
model = Signature
|
||
|
fields = [
|
||
|
'name',
|
||
|
'mail',
|
||
|
]
|