and the last one

This commit is contained in:
Arthur Gerbaud
2016-08-17 18:21:22 +02:00
parent 568550f76b
commit 7694c4ea7a

10
suivi/forms.py Normal file
View File

@@ -0,0 +1,10 @@
from .notes import *
from notes.forms import *
from django.utils import timezone
class AppelForm(UserNoteForm):
class Meta(UserNoteForm.Meta):
model = Appel
fields = ['sujet', 'text', 'entrant', 'created_date', 'created_time']