source: treasury/urls.py @ aab87a4

client
Last change on this file since aab87a4 was 13a23ce, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Bunch of work on the accounting system

  • Property mode set to 100644
File size: 536 bytes
Line 
1from django.conf.urls.defaults import *
2
3# Uncomment the next two lines to enable the admin:
4from django.contrib import admin
5admin.autodiscover()
6
7urlpatterns = patterns('',
8    # Example:
9    (r'^vouchers/', include('treasury.vouchers.urls')),
10
11    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
12    # to INSTALLED_APPS to enable admin documentation:
13    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14
15    # Uncomment the next line to enable the admin:
16    (r'^admin/(.*)', admin.site.root),
17)
Note: See TracBrowser for help on using the repository browser.