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
RevLine 
[719e4bb]1from django.conf.urls.defaults import *
2
[f468e6d]3# Necessary views
4import treasury.finance_core.views
5
[719e4bb]6# Uncomment the next two lines to enable the admin:
[13a23ce]7from django.contrib import admin
8admin.autodiscover()
[719e4bb]9
10urlpatterns = patterns('',
11    # Example:
[f468e6d]12    (r'^accounts/display_tree', treasury.finance_core.views.display_tree),
[13a23ce]13    (r'^vouchers/', include('treasury.vouchers.urls')),
[f468e6d]14    (r'^finance_core/', include('treasury.finance_core.urls')),
[719e4bb]15
16    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
17    # to INSTALLED_APPS to enable admin documentation:
[13a23ce]18    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
[719e4bb]19
20    # Uncomment the next line to enable the admin:
[13a23ce]21    (r'^admin/(.*)', admin.site.root),
[719e4bb]22)
Note: See TracBrowser for help on using the repository browser.