我正在关注James Bennett的Practical Django Projects中coltrane(django博客)的例子,试图给我一个我自己的自定义博客的起点。我能够在第一章中完成大部分工作,以使我的博客排成一行,但当他切换到通用视图时,它似乎就会破裂。
当我使用以下views.py:
时,我的博客有效def entry_list(request):
return render_to_response('blog/entry_listing.html',
{ 'entry_list': Entry.objects.all() },
context_instance=RequestContext(request))
def entry_detail(request, year, month, day, slug):
date_stamp = time.strptime(year+month+day, "%Y%b%d")
publish_date = datetime.date(*date_stamp[:3])
entry = get_object_or_404(Entry, publish_date__year=publish_date.year,
publish_date__month=publish_date.month,
publish_date__day=publish_date.day,
slug=slug)
return render_to_response('blog/entry_detail.html',
{ 'entry': entry },
context_instance=RequestContext(request))
urls.py:
entry_info_dict = {
'queryset': Entry.objects.all(),
'date_field': 'publish_date',
}
urlpatterns = patterns('',
('^blog/$','blog.views.entry_list'),
('^blog/(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$','django.views.generic.date_based.object_detail',entry_info_dict),)
使用这些我可以创建博客条目列表(使用第一个urlpattern),然后输入“详细视图”以查看完整条目(使用第二个url模式)。
然后建议我交换我的urls.py以使用通用视图来显示主要博客列表,所以我的url.py变为:
entry_info_dict = {
'queryset': Entry.objects.all(),
'date_field': 'publish_date',
}
urlpatterns = patterns('',
('^blog/$', 'django.views.generic.date_based.archive_index', entry_info_dict),
('^blog/(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$','django.views.generic.date_based.object_detail',entry_info_dict),)
我在模板中进行了相应的更改(创建了一个entry_archive.html,因为这个通用视图默认使用_archive.html模板,并确保它使用通用的'object'而不是'entry'作为参考) ,但没有任何表现。
模板是:
entry_archive.html
{% extends "base.html" %}
{% block content %}
<p>These are public blog entries.</p>
<ul>
{% for object in object_list %}
{% if object.status == object.LIVE_STATUS %}
{% include "blog/entry_summary.html" %}
{% endif %}
{% endfor %}
</ul>
{% endblock %}
entry_summary.html
<div class="blog_entry">
<h2 class="blog_title">{{ object.title }}</h2>
<div class="blog_date">Published on {{ object.publish_date }}</div>
<div class="blog_summary">{{ object.summary }}</div>
<div class="blog_image"></div>
<div class="blog_url"><a href="{{ object.get_absolute_url }}">Read full entry</a></div>
</div>
对什么不太正确的想法?
答案 0 :(得分:0)
找到答案 - 问题是archive_index泛型视图返回一个名为'latest'的对象,其中包含所有条目,而不是一个名为'object_list'的对象!