11 lines
259 B
Python
11 lines
259 B
Python
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')),
|
|
]
|