9 lines
246 B
Python
9 lines
246 B
Python
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'),
|
|
]
|