嗨,大家好我一直在考慮嘗試使用Django在我的博客項目上集成一個簡單的評論表單,但窗體從不在我的模板上顯示。請看看我的代碼,並告訴我什麼是錯 我需要知道如何詳細查看和FormView結合起來,這樣我可以在同一個模板 意見表(forms.py) from django import forms
from .models import Comment
class CommentForm(fo
我有以下形式: class PostForm(forms.ModelForm):
post_type = forms.ChoiceField(widget=forms.RadioSelect(attrs={'name': 'radioInline'}), choices=POST_CHOICES)
class Meta:
model = Post
f
我有一個模型帖子,用戶可以在該帖子中留下評論以及一組評級。我想將用戶評論限制在每個帖子只有一個。我無法設置,在我的觀點 車型 class Comment(models.Model):
post = models.ForeignKey(Post, related_name="comments")
user = models.ForeignKey(User, related_nam
這是我目前的形式是什麼樣子 class sForm(forms.ModelForm):
"""Form to create new instance. """
class Meta:
model = sModel
fields = ('title','twitter_username')
def __init__(self, *args,