~bnrubin/bantrackertwo/devel

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: Benjamin Rubin
  • Date: 2009-08-10 16:53:45 UTC
  • Revision ID: bnrubin@romulus-20090810165345-c6en6tdw7k6rydfh
- Comments now are part of the parent Event to make templating easier
- Began some basic template work

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    # Uncomment the next line to enable the admin:
16
16
    (r'^admin/', include(admin.site.urls)),
17
17
    (r'^openid/', include('django_openid_auth.urls')),
 
18
    (r'^site_media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnrubin/devel/ircTrack/templates/media/', 'show_indexes': True}), # For testing
18
19
    (r'^$','bt.views.index'),
 
20
    (r'^logout/','bt.views.logout_view'),
19
21
)