Changeset 13a23ce for treasury/urls.py


Ignore:
Timestamp:
Jan 5, 2010, 4:53:12 AM (17 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
7874f6a
Parents:
719e4bb
git-author:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
git-committer:
Alex Dehnert <adehnert@…> (01/05/10 04:53:12)
Message:

Bunch of work on the accounting system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/urls.py

    r719e4bb r13a23ce  
    22
    33# Uncomment the next two lines to enable the admin:
    4 # from django.contrib import admin
    5 # admin.autodiscover()
     4from django.contrib import admin
     5admin.autodiscover()
    66
    77urlpatterns = patterns('',
    88    # Example:
    9     # (r'^treasury/', include('treasury.foo.urls')),
     9    (r'^vouchers/', include('treasury.vouchers.urls')),
    1010
    1111    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
    1212    # to INSTALLED_APPS to enable admin documentation:
    13     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
     13    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    1414
    1515    # Uncomment the next line to enable the admin:
    16     # (r'^admin/(.*)', admin.site.root),
     16    (r'^admin/(.*)', admin.site.root),
    1717)
Note: See TracChangeset for help on using the changeset viewer.