Files
django-maraudes/suivi/forms.py
Arthur Gerbaud 7694c4ea7a and the last one
2016-08-17 18:21:22 +02:00

11 lines
250 B
Python

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']