from django.urls import path from backoffice.views import settings urlpatterns = [ path('brand/', settings.BrandSettingsView.as_view(), name='brand_settings'), path('shop/', settings.ShopSettingsView.as_view(), name='shop_settings'), ]