You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.6 KiB
39 lines
1.6 KiB
from django.conf.urls import url, include
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.views.static import serve
|
|
from lms import views
|
|
from lms import settings
|
|
from access.views import profile_view
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index),
|
|
url(r'^oferta/', views.show_oferta),
|
|
url(r'^test/$', views.test),
|
|
url(r'^all_comments/$', views.all_comments),
|
|
url(r'^reports/$', views.new_reports),
|
|
url(r'^new_reports/$', views.new_reports),
|
|
url(r'^500/$', views.e500),
|
|
url(r'^404/$', views.e404),
|
|
url(r'^contacts/$', views.contacts),
|
|
url(r'^access_error/$', views.access_error),
|
|
url(r'^storage/', include('storage.urls')),
|
|
url(r'^practice/', include('practice.urls')),
|
|
url(r'^access/', include('access.urls')),
|
|
url(r'^management/', include('management.urls')),
|
|
url(r'^teacher/', include('access.teach_urls')),
|
|
url(r'^wallet/', include('finance.urls')),
|
|
url(r'^courses/', include('courses.urls')),
|
|
url(r'^journals/', include('journals.urls')),
|
|
url(r'^library/', include('library.urls')),
|
|
url(r'^forum/', include('management.forum_urls')),
|
|
url(r'^service/', include('service.urls')),
|
|
url(r'^redactor/', include('redactor.urls')),
|
|
#url(r'^jet/', include('jet.urls', 'jet')),
|
|
#url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')),
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
url(r'^media/(?P<path>.*)/$', serve, {'document_root': settings.MEDIA_ROOT}),
|
|
url(r'^static/(?P<path>.*)/$', serve, {'document_root': settings.STATIC_ROOT}),
|
|
url(r'^(?P<view_id>.*)/$', profile_view),
|
|
]
|
|
|