merge
This commit is contained in:
11
app_settings/urls.py
Normal file
11
app_settings/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path
|
||||
from django.http import HttpResponse
|
||||
|
||||
app_name = 'settings'
|
||||
|
||||
def placeholder_view(request):
|
||||
return HttpResponse("Placeholder for settings app.")
|
||||
|
||||
urlpatterns = [
|
||||
path('', placeholder_view, name='settings_placeholder'),
|
||||
]
|
||||
Reference in New Issue
Block a user