Changeset f468e6d for treasury/urls.py
- Timestamp:
- Jan 6, 2010, 3:04:46 AM (16 years ago)
- Branches:
- master, client
- Children:
- b26026c
- Parents:
- 6027277
- git-author:
- Alex Dehnert <adehnert@…> (01/06/10 03:04:46)
- git-committer:
- Alex Dehnert <adehnert@…> (01/06/10 03:04:46)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
treasury/urls.py
r13a23ce rf468e6d 1 1 from django.conf.urls.defaults import * 2 3 # Necessary views 4 import treasury.finance_core.views 2 5 3 6 # Uncomment the next two lines to enable the admin: … … 7 10 urlpatterns = patterns('', 8 11 # Example: 12 (r'^accounts/display_tree', treasury.finance_core.views.display_tree), 9 13 (r'^vouchers/', include('treasury.vouchers.urls')), 14 (r'^finance_core/', include('treasury.finance_core.urls')), 10 15 11 16 # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
Note: See TracChangeset
for help on using the changeset viewer.