0

djangoのデフォルトのコメントフォームをドキュメントとして使用していますが、「name」、「url」などのタグは私のニーズに合いません。中国語にする必要があります。これらのタグを変更するにはどうすればよいですか、コメントを使用してフォームをカスタマイズする方法フレームワーク?助けてください。どうもありがとう。 私のブログのコメントページ

フォームをカスタマイズしましたが、機能しません。

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
4

2 に答える 2

1

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

コメントアプリを作成し、CommentFormから新しいフォームを作成し、その中のラベルを変更する必要があります。

于 2012-12-25T15:50:08.313 に答える
0

ラベルのセクションをご覧ください: https ://docs.djangoproject.com/en/dev/ref/forms/fields/#label

于 2012-12-25T15:38:06.440 に答える