source: remit/finance_core/urls.py @ 45a52c6

Last change on this file since 45a52c6 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 
1from django.conf.urls import patterns, include, url
2import finance_core.views
3
4urlpatterns = 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.