テンプレートには{% url "news.views.article" article=article.id %}
、article.idが現在表示されている記事のIDがあります。私のurls.pyにはこれが含まれています:
url(r'^news/$', 'news.views.index'),
url(r'^news/article/(?P<article>\d{1,4})/$', 'news.views.article'),
ただし、上記のtemplatetagを含むページをロードすると、次のようになります。
NoReverseMatch at /news/
Reverse for '"news.views.article"' with arguments '()' and keyword arguments '{'article': 2}' not found.