テンプレートbase.htmlから逆コマンド「url」を実行するのに問題があります。
URLS.confファイルは次のようになります。
dic_info_artigo = {
'queryset': Artigo.modificado.all(),
'date_field': 'data_pub',
}
urlpatterns = patterns('django.views.generic.date_based',
(r'^$', 'archive_index', dic_info_artigo,'artigos'),
(r'^(?P<year>\d{4})/$','archive_year', dic_info_artigo,'artigos_ano'),
(r'^(?P<year>\d{4})/(?P<month>\w{3})/$',
'archive_month', dic_info_artigo,'artigos_mes'),
(r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/$',
'archive_day', dic_info_artigo,'artigos_dia'),
(r'^(?P<year>\d{4})/(?P<month>\w{3})/(?P<day>\d{2})/(?P<slug>[-\w]+)/$',
'object_detail', dic_info_artigo,'detalhe_artigo'),
)
base.html
<a href="{% url artigos %}"> Artigos </ a>
エラー:
辞書更新シーケンス要素 # 0 の長さは 1 です。2が必要です
すでにパラメーター「name =」を使用してみました。値を変更しましたが、機能しませんでした
url(r'^$', 'archive_index', dic_info_artigo, name='artigos'),
私は何を間違っていますか?任意のヒント?
ありがとう。