2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
|
|
|
# Copyright 2016,2017
|
|
|
|
# - Skia <skia@libskia.so>
|
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2015-11-18 08:44:06 +00:00
|
|
|
"""sith URL Configuration
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/1.8/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Add an import: from blog import urls as blog_urls
|
|
|
|
2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
|
|
|
|
"""
|
|
|
|
from django.conf.urls import include, url
|
|
|
|
from django.contrib import admin
|
2016-01-28 15:53:37 +00:00
|
|
|
from django.conf.urls.static import static
|
|
|
|
from django.conf import settings
|
2016-09-08 01:29:49 +00:00
|
|
|
from django.views.i18n import javascript_catalog
|
2016-08-19 21:24:23 +00:00
|
|
|
from ajax_select import urls as ajax_select_urls
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2016-09-08 01:29:49 +00:00
|
|
|
js_info_dict = {
|
|
|
|
'packages': ('sith',),
|
|
|
|
}
|
|
|
|
|
2015-12-07 16:23:52 +00:00
|
|
|
handler403 = "core.views.forbidden"
|
|
|
|
handler404 = "core.views.not_found"
|
|
|
|
|
2015-11-18 08:44:06 +00:00
|
|
|
urlpatterns = [
|
2015-11-26 09:57:26 +00:00
|
|
|
url(r'^', include('core.urls', namespace="core", app_name="core")),
|
2016-09-21 12:09:16 +00:00
|
|
|
url(r'^rootplace/', include('rootplace.urls', namespace="rootplace", app_name="rootplace")),
|
2016-01-29 14:20:00 +00:00
|
|
|
url(r'^subscription/', include('subscription.urls', namespace="subscription", app_name="subscription")),
|
2016-12-21 01:38:21 +00:00
|
|
|
url(r'^com/', include('com.urls', namespace="com", app_name="com")),
|
2016-02-02 15:34:36 +00:00
|
|
|
url(r'^club/', include('club.urls', namespace="club", app_name="club")),
|
2016-03-28 12:54:35 +00:00
|
|
|
url(r'^counter/', include('counter.urls', namespace="counter", app_name="counter")),
|
2016-11-08 17:14:41 +00:00
|
|
|
url(r'^stock/', include('stock.urls', namespace="stock", app_name="stock")),
|
2016-04-20 01:01:14 +00:00
|
|
|
url(r'^accounting/', include('accounting.urls', namespace="accounting", app_name="accounting")),
|
2016-07-21 18:03:31 +00:00
|
|
|
url(r'^eboutic/', include('eboutic.urls', namespace="eboutic", app_name="eboutic")),
|
2016-07-28 18:05:56 +00:00
|
|
|
url(r'^launderette/', include('launderette.urls', namespace="launderette", app_name="launderette")),
|
2016-10-26 17:21:19 +00:00
|
|
|
url(r'^sas/', include('sas.urls', namespace="sas", app_name="sas")),
|
2016-08-05 18:01:23 +00:00
|
|
|
url(r'^api/v1/', include('api.urls', namespace="api", app_name="api")),
|
2016-12-05 19:18:03 +00:00
|
|
|
url(r'^election/', include('election.urls', namespace="election", app_name="election")),
|
2017-01-21 02:42:06 +00:00
|
|
|
url(r'^forum/', include('forum.urls', namespace="forum", app_name="forum")),
|
2017-05-10 20:17:05 +00:00
|
|
|
url(r'^trombi/', include('trombi.urls', namespace="trombi", app_name="trombi")),
|
2015-11-18 08:44:06 +00:00
|
|
|
url(r'^admin/', include(admin.site.urls)),
|
2016-08-19 21:24:23 +00:00
|
|
|
url(r'^ajax_select/', include(ajax_select_urls)),
|
2016-08-24 17:11:09 +00:00
|
|
|
url(r'^i18n/', include('django.conf.urls.i18n')),
|
2016-09-08 01:29:49 +00:00
|
|
|
url(r'^jsi18n/$', javascript_catalog, js_info_dict, name='javascript-catalog'),
|
2016-09-14 11:46:17 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if settings.DEBUG:
|
|
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
2017-02-24 00:52:22 +00:00
|
|
|
import debug_toolbar
|
|
|
|
urlpatterns += [
|
|
|
|
url(r'^__debug__/', include(debug_toolbar.urls)),
|
|
|
|
]
|