spacepaste

  1.  
  2. from django.conf.urls import url, include
  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'^explorer/', include('explorer.urls')),
  7. url(r'^explorer/', include('tendenci.apps.explorer_extensions.urls')),
  8. #url(r'^tickets/', include('tendenci.apps.helpdesk.urls')),
  9. url(r'^', include('tendenci.apps.committees.urls')),
  10. url(r'^', include('tendenci.apps.case_studies.urls')),
  11. url(r'^', include('tendenci.apps.donations.urls')),
  12. url(r'^', include('tendenci.apps.speakers.urls')),
  13. url(r'^', include('tendenci.apps.staff.urls')),
  14. url(r'^', include('tendenci.apps.studygroups.urls')),
  15. url(r'^', include('tendenci.apps.videos.urls')),
  16. url(r'^', include('tendenci.apps.testimonials.urls')),
  17. url(r'^', include('tendenci.apps.social_services.urls')),
  18. url(r'^', include('novalaciro.urls')),
  19. ]
  20.