This commit is contained in:
Johannes Schriewer 2020-12-16 01:25:43 +01:00
parent b842442e98
commit 9aa2612327
No known key found for this signature in database
GPG key ID: 85EB2BC0D45A0F86

View file

@ -13,8 +13,8 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include
from django.urls import path
from .views import WorkshopListView, AreaListView, BoxListView, ItemListView, ManufacturerListView, DistributorListView
from .views import WorkshopView, AreaView, BoxView, ItemView, DistributorView, ManufacturerView