1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
from django import forms
from threadedcomments.models import DEFAULT_MAX_COMMENT_LENGTH
from threadedcomments.models import FreeThreadedComment, ThreadedComment
from django.utils.translation import ugettext_lazy as _
class ThreadedCommentForm(forms.ModelForm):
"""
Form which can be used to validate data for a new ThreadedComment.
It consists of just two fields: ``comment``, and ``markup``.
The ``comment`` field is the only one which is required.
"""
comment = forms.CharField(
label=_('comment'),
max_length=DEFAULT_MAX_COMMENT_LENGTH,
widget=forms.Textarea
)
class Meta:
model = ThreadedComment
fields = ('comment', 'markup')
class FreeThreadedCommentForm(forms.ModelForm):
"""
Form which can be used to validate data for a new FreeThreadedComment.
It consists of just a few fields: ``comment``, ``name``, ``website``,
``email``, and ``markup``.
The fields ``comment``, and ``name`` are the only ones which are required.
"""
comment = forms.CharField(
label=_('comment'),
max_length=DEFAULT_MAX_COMMENT_LENGTH,
widget=forms.Textarea
)
class Meta:
model = FreeThreadedComment
fields = ('comment', 'name', 'website', 'email', 'markup')
|