DJDT opet funkcni.
mamweb/urls.py preveden na tabulatory.
This commit is contained in:
parent
31f7edc39f
commit
7b9db7c533
3 changed files with 25 additions and 23 deletions
|
@ -24,6 +24,7 @@ INSTALLED_APPS += (
|
||||||
|
|
||||||
# SECURITY WARNING: don't run with debug turned on in production!
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
|
INTERNAL_IPS = ['127.0.0.1']
|
||||||
|
|
||||||
TEMPLATES[0]['OPTIONS']['debug'] = True
|
TEMPLATES[0]['OPTIONS']['debug'] = True
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
from django.conf.urls.i18n import i18n_patterns
|
|
||||||
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
@ -9,30 +8,32 @@ from django.urls import path # As per docs.
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
|
|
||||||
# Admin a nastroje
|
# Admin a nastroje
|
||||||
path('admin/', admin.site.urls), # NOQA
|
path('admin/', admin.site.urls), # NOQA
|
||||||
path('ckeditor/', include('ckeditor_uploader.urls')),
|
path('ckeditor/', include('ckeditor_uploader.urls')),
|
||||||
path('autocomplete/', include('autocomplete_light.urls')),
|
path('autocomplete/', include('autocomplete_light.urls')),
|
||||||
|
|
||||||
# Seminarova aplikace (ma vlastni podadresare)
|
# Seminarova aplikace (ma vlastni podadresare)
|
||||||
path('', include('seminar.urls')),
|
path('', include('seminar.urls')),
|
||||||
|
|
||||||
# Korekturovaci aplikace (ma vlastni podadresare)
|
# Korekturovaci aplikace (ma vlastni podadresare)
|
||||||
path('', include('korektury.urls')),
|
path('', include('korektury.urls')),
|
||||||
|
|
||||||
# Prednaskova aplikace (ma vlastni podadresare)
|
# Prednaskova aplikace (ma vlastni podadresare)
|
||||||
path('', include('prednasky.urls')),
|
path('', include('prednasky.urls')),
|
||||||
|
|
||||||
# Comments (interni i verejne)
|
# Comments (interni i verejne)
|
||||||
path('comments_dj/', include('django_comments.urls')),
|
path('comments_dj/', include('django_comments.urls')),
|
||||||
path('comments_fl/', include('fluent_comments.urls')),
|
path('comments_fl/', include('fluent_comments.urls')),
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# This is only needed when using runserver.
|
# This is only needed when using runserver.
|
||||||
if settings.DEBUG:
|
if settings.DEBUG:
|
||||||
urlpatterns += [
|
import debug_toolbar
|
||||||
path('media/<path:path>', views.static.serve, # NOQA
|
urlpatterns += [
|
||||||
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
path('media/<path:path>', views.static.serve, # NOQA
|
||||||
]
|
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),
|
||||||
urlpatterns += staticfiles_urlpatterns()
|
path('__debug__/', include(debug_toolbar.urls)),
|
||||||
|
]
|
||||||
|
urlpatterns += staticfiles_urlpatterns()
|
||||||
|
|
|
@ -28,13 +28,13 @@ django-imagekit
|
||||||
|
|
||||||
# Comments
|
# Comments
|
||||||
akismet==1.0.1
|
akismet==1.0.1
|
||||||
django-fluent-comments==2.0.2
|
django-fluent-comments==2.1
|
||||||
django-threadedcomments==1.2
|
django-threadedcomments==1.2
|
||||||
django-contrib-comments==1.9.0
|
django-contrib-comments==1.9.0
|
||||||
|
|
||||||
# debug tools/extensions
|
# debug tools/extensions
|
||||||
|
|
||||||
django-debug-toolbar==1.9.1
|
django-debug-toolbar==1.11
|
||||||
django-extensions==2.1.9
|
django-extensions==2.1.9
|
||||||
sqlparse==0.2.4
|
sqlparse==0.2.4
|
||||||
Werkzeug==0.14.1
|
Werkzeug==0.14.1
|
||||||
|
|
Loading…
Reference in a new issue