from django.urls import path, include from .views import SystemSettingsView app_name = "system_settings" urlpatterns = [ path("", SystemSettingsView.as_view(), name="settings"), path("roles/", include('user_roles.urls', namespace='user_roles')), path("discounts/", include('discounts.urls', namespace='discounts')), path("integrations/", include('integrations.urls', namespace='integrations')), ]