source: treasury/urls.py @ 6a867b3

client
Last change on this file since 6a867b3 was 7c3ea05, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Punt the treasury.

  • Property mode set to 100644
File size: 693 bytes
RevLine 
[719e4bb]1from django.conf.urls.defaults import *
2
[f468e6d]3# Necessary views
[7c3ea05]4import finance_core.views
[f468e6d]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:
[7c3ea05]12    (r'^accounts/display_tree', finance_core.views.display_tree),
13    (r'^vouchers/', include('vouchers.urls')),
14    (r'^finance_core/', include('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.