merge
This commit is contained in:
14
scheduler/urls.py
Normal file
14
scheduler/urls.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path
|
||||
from django.http import HttpResponse
|
||||
|
||||
def placeholder_view(request):
|
||||
"""
|
||||
Заглушка для URL-адресов приложения scheduler.
|
||||
"""
|
||||
return HttpResponse("Это заглушка для приложения scheduler.")
|
||||
|
||||
app_name = "scheduler"
|
||||
|
||||
urlpatterns = [
|
||||
path("", placeholder_view, name="scheduler_placeholder"),
|
||||
]
|
||||
Reference in New Issue
Block a user