poulpe/evenementiel/urls.py

19 lines
432 B
Python
Raw Normal View History

2016-09-28 20:36:48 +02:00
"""
GestionEvenmentiel URL configuration
"""
2017-02-18 18:28:11 +01:00
from django.conf.urls import url, include
2016-09-28 20:36:48 +02:00
from django.contrib import admin
urlpatterns = [
url(r'^admin/', admin.site.urls),
2017-02-18 18:28:11 +01:00
url(r'^event/', include('event.urls')),
2017-02-18 01:45:22 +01:00
url(r'^user/', include('user.urls')),
2017-02-21 15:32:03 +01:00
url(r'^', include('shared.urls')),
2016-09-28 20:36:48 +02:00
]
2017-02-18 18:28:11 +01:00
if settings.DEBUG:
import debug_toolbar
urlpatterns += [
url(r'^__debug__/', include(debug_toolbar.urls)),
]