~bnrubin/bantrackertwo/devel

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: Benjamin Rubin
  • Date: 2009-09-02 02:14:31 UTC
  • Revision ID: bnrubin@romulus-20090902021431-02x226yec1d5sxal
- Cleaned up Event code and presentation
- Added basic Issue and Settings forms and presentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    (r'^admin/', include(admin.site.urls)),
17
17
    (r'^openid/', include('django_openid_auth.urls')),
18
18
    (r'^site_media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnrubin/devel/ircTrack/templates/media/', 'show_indexes': True}), # For testing
19
 
    (r'^$','bt.views.index'),
 
19
    (r'^bt/$','bt.views.ban_index'),
 
20
    (r'^$','bt.views.ban_index'),
 
21
    (r'^issue/$','bt.views.issue_index'),
 
22
    (r'^issue/new/$','bt.views.issue_new'),
 
23
    (r'^settings/$','bt.views.settings'),
20
24
    (r'^logout/','bt.views.logout_view'),
21
25
)