django 1.5 を使用して新しいブログを書いていますが、テンプレートにエントリ オブジェクトに関連するリンクがありません。
私のモデル
def get_absolute_url(self):
return reverse('article_archive_date_detail',kwargs = {'year':self.pub_date.strftime("%Y"),
'month':self.pub_date.strftime("%b").lower(),
'day':self.pub_date.strftime("%d"),
'slug':self.slug})
私のURL:
url(r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$',DateDetailView.as_view(queryset=Article.objects.filter(status=Article.LIVE_STATUS), date_field="pub_date"),name="article_archive_date_detail"),
テンプレート:
{% for entry in latest %}
<a class="readmore" href="{{ entry.get_absolute_url }}">Read more ...</a>
{% endfor %}
私は何を忘れましたか?