自定义django评论表

时间:2012-12-25 14:37:38

标签: django django-comments

我使用django中的默认注释表单作为文档。但是“name”,“url”这样的tage不适合我的需要。我需要它们成为中文。如何更改这些tages以及如何自定义表单评论框架?请帮帮我。谢谢。 The comment page of my blog

我自定义表单但不起作用。

form.py:
class CommentFormmodels(CommentForm):
    name          = forms.CharField(label=("姓名"), max_length=50)
    email         = forms.EmailField(label=("Email address"))
    url           = forms.URLField(label=("个人站点")`enter code here`, required=False)
    comment       = forms.CharField(label=('评论'), widget=forms.Textarea,
        max_length=COMMENT_MAX_LENGTH)
    def get_comment_model(self):
        return CommentForm
    def get_comment_create_data(self):
        data = super(CommentFormmodels,self).get_comment_create_data()
        data['name']=self.cleaned_data['name']
        data['email'] = self.cleaned_data['email']
        data['url'] = self.cleaned_data['url']
        data['comment'] = self.cleaned_data['comment']
        return data
__init__.py:
from comment.forms import CommentFormmodels 

def get_fom():
    return CommentFormmodels

2 个答案:

答案 0 :(得分:1)

https://docs.djangoproject.com/en/1.4/ref/contrib/comments/custom/

您需要创建评论应用,从CommentForm创建新表单并更改其中的标签。

答案 1 :(得分:0)