1
0
Fork 0
IdreXyz/idre/urls.py

29 lines
575 B
Python
Raw Permalink Normal View History

2017-08-15 15:26:13 +02:00
from django.conf import settings
2015-03-14 22:38:12 +01:00
from django.conf.urls.static import static
from django.contrib import admin
2020-02-09 00:42:39 +01:00
from django.urls import path
2015-03-14 22:38:12 +01:00
2020-02-09 00:42:39 +01:00
from idre.views import about_view
import label.urls
2015-03-14 22:38:12 +01:00
2017-08-18 11:56:20 +02:00
2015-03-14 22:38:12 +01:00
admin.autodiscover()
2016-02-01 17:52:43 +01:00
2020-02-09 00:42:39 +01:00
urlpatterns = [
path("about/", about_view, name="about"),
path("admin/", admin.site.urls),
*label.urls.urlpatterns,
]
2017-08-18 11:56:20 +02:00
2017-08-15 15:26:13 +02:00
if settings.DEBUG:
2017-08-18 11:56:20 +02:00
urlpatterns += static(
settings.STATIC_URL,
document_root=settings.STATIC_ROOT
)
urlpatterns += static(
settings.MEDIA_URL,
document_root=settings.MEDIA_ROOT
)