Advertisement
Guest User

local_urls.py

a guest
Jul 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.90 KB | None | 0 0
  1. from django.conf.urls import url, include
  2.  
  3. # Add additional url patterns for additional apps
  4. # here and they will be included in the main urls.py
  5. extrapatterns = [
  6.     url(r'^', include('blog.urls')),
  7.     url(r'^explorer/', include('explorer.urls')),
  8.     url(r'^explorer/', include('tendenci.apps.explorer_extensions.urls')),
  9.     #url(r'^tickets/', include('tendenci.apps.helpdesk.urls')),
  10.     url(r'^', include('tendenci.apps.committees.urls')),
  11.     url(r'^', include('tendenci.apps.case_studies.urls')),
  12.     url(r'^', include('tendenci.apps.donations.urls')),
  13.     url(r'^', include('tendenci.apps.speakers.urls')),
  14.     url(r'^', include('tendenci.apps.staff.urls')),
  15.     url(r'^', include('tendenci.apps.studygroups.urls')),
  16.     url(r'^', include('tendenci.apps.videos.urls')),
  17.     url(r'^', include('tendenci.apps.testimonials.urls')),
  18.     url(r'^', include('tendenci.apps.social_services.urls')),
  19. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement