我已经将博客作为一个项目,并且我已将用户设置为直接提交博客的帖子,但我想先将这篇文章定向给管理员以供批准,然后再显示在网站上。这是创建后视图类。
class PostCreateView(CreateView):
model = Post
fields = ['title', 'content']
template_name = "post_form.html"
def form_valid(self, form):
form.instance.author = self.request.user
return super().form_valid(form)
如果有任何教程甚至指南要遵循,请提前致谢
繁花不似锦
相关分类