Ticket #16024: patch.diff

File patch.diff, 588 bytes (added by elbarto, 13 years ago)
  • docs/topics/http/urls.txt

     
    655655
    656656    urlpatterns = patterns('',
    657657        url(r'^archive/(\d{4})/$', archive, name="full-archive"),
    658         url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}, "arch-summary"),
     658        url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}, name="arch-summary"),
    659659    )
    660660
    661661With these names in place (``full-archive`` and ``arch-summary``), you can
Back to Top