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