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
RevLine 
[ff623c3]1from django.conf.urls import patterns, include, url
[e24ea7c]2import finance_core.views
[f468e6d]3
4urlpatterns = patterns('',
[e24ea7c]5    (r'^display_accounts', finance_core.views.display_tree),
[ed4ccc7]6    url(r'reporting/', finance_core.views.reporting, name='reporting', ),
[f468e6d]7)
Note: See TracBrowser for help on using the repository browser.