diff --git a/steering/urls.py b/steering/urls.py index b7cab767f7cf8b97e7e1665c2744b3b79a86ef72..920776785a98a50af99482b2e5b131c1b6538305 100644 --- a/steering/urls.py +++ b/steering/urls.py @@ -21,6 +21,8 @@ from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView from rest_framework_nested import routers +from django.conf import settings +from django.conf.urls.static import static from django.contrib import admin from django.urls import include, path from program.views import ( @@ -106,4 +108,4 @@ urlpatterns = [ name="swagger-ui", ), path("admin/", admin.site.urls), -] +] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)