我已经尝试了几个小时,并查看了很多文档,但我无法正确理解。我认为我不会很快看到解决方案,所以也许有人可以看到问题所在?
我想要一个视图来显示我的所有类别以及与这些类别相关的所有条目。
我试图遵循这个例子:django class-based-views topic
但我得到这个错误:元组索引超出范围
我的模型:
STATUS_CHOICES = (
('d', 'Draft'),
('p', 'Published'),
('w', 'Whitdrawn'),
)
class PublishedManager(models.Manager):
use_for_related_fields = True
def get_query_set(self):
return super(PublishedManager, self).get_query_set().filter(status='p')
class Category(models.Model):
name = models.CharField()
slug = models.SlugField()
status = models.CharField(max_length=1, default='d', choices=STATUS_CHOICES)
published = PublishedManager()
class Entry(models.Model):
name = models.CharField()
slug = models.SlugField()
category = models.ForeignKey(Category)
status = models.CharField(max_length=1, default='d', choices=STATUS_CHOICES)
published = PublishedManager()
我的网址
#View for all categories and all connected entries
url(r'^blog/$', AllCategories.as_view()),
#View for one category - and all the connected entries
url(r'^blog/(?P<slug>[-\w]+)/$', CategoryList.as_view()),
我的看法
class AllCategories(ListView):
context_object_name = "category_list"
queryset = Category.published.all()
class CategoryList(ListView):
template_name = 'blog/category_and_connected_entries.html'
def get_queryset(self):
self.category = get_object_or_404(Category, self=self.kwargs['slug'])
return Entry.published.filter(category=self.category)
def get_context_data(self, **kwargs):
# Call the base implementation first to get a context
context = super(CategoryList, self).get_context_data(**kwargs)
# Add in the category
context['category'] = self.category
return context
任何帮助深表感谢!
编辑:
添加了我的自定义管理器。我只有在我的模板中没有显示未发布的条目以列出我的所有类别及其所有连接的条目时遇到问题,例如:
- 第一类
- 发表条目 1
- 发表条目 3
- 第 2 类
- 发表条目 7
- 发表条目 9
我使用这个 for 循环获取连接的整体,但它也列出了未发布的整体:
{% for entry in category.entry_set.all %}