2018-08-10 08:39:51 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""
|
|
|
|
Main site URL configuration.
|
|
|
|
"""
|
|
|
|
from django.contrib import admin
|
|
|
|
from django.urls import include, path
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path('', include('homepage.urls')),
|
2018-08-10 13:06:33 -04:00
|
|
|
path('admin/', admin.site.urls),
|
2018-08-10 08:39:51 -04:00
|
|
|
path('quest/', include('quest.urls')),
|
2018-08-10 13:06:33 -04:00
|
|
|
path('set_session/', include('set_session.urls')),
|
2018-08-10 19:16:40 -04:00
|
|
|
path('signup/', include('signup.urls')),
|
|
|
|
path('login/', include('login.urls')),
|
|
|
|
path('logout/', include('logout.urls')),
|
2018-09-05 14:45:43 -04:00
|
|
|
path('user/', include('user.urls')),
|
2018-10-02 11:35:39 -04:00
|
|
|
path('search/', include('search.urls')),
|
2018-08-10 08:39:51 -04:00
|
|
|
]
|