client
Last change
on this file since 7c3ea05 was
7c3ea05,
checked in by Alex Dehnert <adehnert@…>, 16 years ago
|
Punt the treasury.
|
-
Property mode set to
100644
|
File size:
693 bytes
|
Line | |
---|
1 | from django.conf.urls.defaults import * |
---|
2 | |
---|
3 | # Necessary views |
---|
4 | import finance_core.views |
---|
5 | |
---|
6 | # Uncomment the next two lines to enable the admin: |
---|
7 | from django.contrib import admin |
---|
8 | admin.autodiscover() |
---|
9 | |
---|
10 | urlpatterns = patterns('', |
---|
11 | # Example: |
---|
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 | |
---|
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.