在ListView网址

时间:2018-06-08 19:06:25

标签: django django-models django-views

我有ListView类指向一个url。我想在列表的每个项目的顶部的同一个URL上有一个CreateView表单。到目前为止还没有显示任何表格(只显示按钮)。我怎么能这样做?

现在我有这些类,都指向urls.py上的相同网址:

view.py:

class TheList(ListView):
    model = Item
    template_name='item/post_create.html'

class CreatePost(CreateView):
    model = Post
    fields = [ 'post' ]
    template_name_suffix='_create'

更新。现在textarea正在显示,但提交表单不会保存数据:

class CreatePost(CreateView):
    class PostForm(ModelForm):
        class Meta:
            model = Post
            fields = ['post'] 
            widgets = {
            'post': forms.Textarea()
        }

class TheList(ListView):
    model = Item
    template_name='item/items.html'

    def get_context_data(self, **kwargs):
        context = super(TheList, self).get_context_data(**kwargs)
        context['form'] = CreatePost.PostForm
        return context

1 个答案:

答案 0 :(得分:0)

您可以使用get_context_data()的{​​{1}}方法将表单添加到模板的上下文中:

ListView