11 lines
184 B
Python
11 lines
184 B
Python
from django.urls import path
|
|
from .views import SettingsView
|
|
|
|
app_name = 'settings'
|
|
urlpatterns = [
|
|
path(
|
|
'',
|
|
SettingsView.as_view(),
|
|
name='index'
|
|
),
|
|
]
|