18 lines
432 B
Python
18 lines
432 B
Python
"""
|
|
GestionEvenmentiel URL configuration
|
|
"""
|
|
from django.conf.urls import url, include
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
url(r'^admin/', admin.site.urls),
|
|
url(r'^event/', include('event.urls')),
|
|
url(r'^user/', include('user.urls')),
|
|
url(r'^', include('shared.urls')),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
import debug_toolbar
|
|
urlpatterns += [
|
|
url(r'^__debug__/', include(debug_toolbar.urls)),
|
|
]
|