You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
717 B
Python
25 lines
717 B
Python
8 years ago
|
from django import forms
|
||
|
from .models import TicketMessage, CATEGORY_CHOICES
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
|
||
|
class NewTicketForm(forms.Form):
|
||
|
category = forms.ChoiceField(label=_("Category"), choices=CATEGORY_CHOICES)
|
||
|
subject = forms.CharField(label=_("Subject"), min_length=1, max_length=100)
|
||
|
message = forms.CharField(label=_("Message"), widget=forms.Textarea)
|
||
|
|
||
|
|
||
|
class ReplyForm(forms.ModelForm):
|
||
|
class Meta:
|
||
|
model = TicketMessage
|
||
|
fields = ('message',)
|
||
|
|
||
|
|
||
|
class StaffReplyForm(forms.ModelForm):
|
||
|
class Meta:
|
||
|
model = TicketMessage
|
||
|
fields = ('message', 'staff_only')
|
||
|
|
||
|
staff_only = forms.BooleanField(label=_("Private"), required=False)
|
||
|
|