rm file
This commit is contained in:
@ -184,9 +184,9 @@ THUMBNAIL_PROCESSORS = (
|
||||
# Enabled applications
|
||||
INSTALLED_APPS = (
|
||||
"radiocampus",
|
||||
"aircox_streamer.apps.AircoxStreamerConfig",
|
||||
"aircox.apps.AircoxConfig",
|
||||
"aircox.apps.AircoxAdminConfig",
|
||||
"aircox_streamer.apps.AircoxStreamerConfig",
|
||||
# Aircox dependencies
|
||||
"rest_framework",
|
||||
"django_filters",
|
||||
|
@ -22,16 +22,14 @@ from django.urls import include, path
|
||||
import aircox.urls
|
||||
import aircox_streamer.urls
|
||||
|
||||
urlpatterns = (
|
||||
aircox.urls.urls
|
||||
+ aircox_streamer.urls.urls
|
||||
+ [
|
||||
path("admin/", admin.site.urls),
|
||||
path("accounts/", include("django.contrib.auth.urls")),
|
||||
path("ckeditor/", include("ckeditor_uploader.urls")),
|
||||
path("filer/", include("filer.urls")),
|
||||
]
|
||||
)
|
||||
urlpatterns = [
|
||||
*aircox.urls.urls,
|
||||
path("streamer/", include((aircox_streamer.urls.urls, "aircox_streamer"), namespace="streamer")),
|
||||
path("admin/", admin.site.urls),
|
||||
path("accounts/", include("django.contrib.auth.urls")),
|
||||
path("ckeditor/", include("ckeditor_uploader.urls")),
|
||||
path("filer/", include("filer.urls")),
|
||||
]
|
||||
|
||||
if settings.DEBUG:
|
||||
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) + static(
|
||||
|
Reference in New Issue
Block a user