Last change
on this file since f298bd7 was
ff623c3,
checked in by Alex Dehnert <adehnert@…>, 11 years ago
|
django.conf.urls.defaults is dead; import its members explicitly
django.conf.urls.defaults no longer exists, so at the top of each urls.py we
need to explicitly import the appropriate former members of that module.
|
-
Property mode set to
100644
|
File size:
243 bytes
|
Line | |
---|
1 | from django.conf.urls import patterns, include, url |
---|
2 | import finance_core.views |
---|
3 | |
---|
4 | urlpatterns = patterns('', |
---|
5 | (r'^display_accounts', finance_core.views.display_tree), |
---|
6 | url(r'reporting/', finance_core.views.reporting, name='reporting', ), |
---|
7 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.