source: treasury/urls.py @ 269db50

client
Last change on this file since 269db50 was f468e6d, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Split vouchers off into a finance_core app too

  • Property mode set to 100644
File size: 729 bytes
Line 
1from django.conf.urls.defaults import *
2
3# Necessary views
4import treasury.finance_core.views
5
6# Uncomment the next two lines to enable the admin:
7from django.contrib import admin
8admin.autodiscover()
9
10urlpatterns = patterns('',
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')),
15
16    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
17    # to INSTALLED_APPS to enable admin documentation:
18    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
19
20    # Uncomment the next line to enable the admin:
21    (r'^admin/(.*)', admin.site.root),
22)
Note: See TracBrowser for help on using the repository browser.