Ticket #16024: patch.diff
File patch.diff, 588 bytes (added by , 13 years ago) |
---|
-
docs/topics/http/urls.txt
655 655 656 656 urlpatterns = patterns('', 657 657 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"), 659 659 ) 660 660 661 661 With these names in place (``full-archive`` and ``arch-summary``), you can