Changeset f468e6d for treasury/urls.py


Ignore:
Timestamp:
Jan 6, 2010, 3:04:46 AM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
b26026c
Parents:
6027277
git-author:
Alex Dehnert <adehnert@…> (01/06/10 03:04:46)
git-committer:
Alex Dehnert <adehnert@…> (01/06/10 03:04:46)
Message:

Split vouchers off into a finance_core app too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/urls.py

    r13a23ce rf468e6d  
    11from django.conf.urls.defaults import *
     2
     3# Necessary views
     4import treasury.finance_core.views
    25
    36# Uncomment the next two lines to enable the admin:
     
    710urlpatterns = patterns('',
    811    # Example:
     12    (r'^accounts/display_tree', treasury.finance_core.views.display_tree),
    913    (r'^vouchers/', include('treasury.vouchers.urls')),
     14    (r'^finance_core/', include('treasury.finance_core.urls')),
    1015
    1116    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
Note: See TracChangeset for help on using the changeset viewer.