Changes between Version 2 and Version 3 of SnakesAndRubiesTranscript/DjangoPresentation


Ignore:
Timestamp:
Jan 23, 2006, 4:14:19 PM (18 years ago)
Author:
anonymous
Comment:

added missing URLconf code

Legend:

Unmodified
Added
Removed
Modified
  • SnakesAndRubiesTranscript/DjangoPresentation

    v2 v3  
    202202
    203203{{{
    204 
     204(
     205    ('^blog/$', 'myapp.blog.homepage'),
     206    ('^blog/archive/$', 'myapp.blog.archive'),
     207    ('^blog/archive/(\d+)/$', 'myapp.blog.permalink'),
     208)
    205209}}}
    206210
Back to Top