Стартавая модель задачника

This commit is contained in:
adm
2024-02-22 16:15:54 +03:00
parent 50646130fe
commit 2119c30a0a
28 changed files with 1227 additions and 0 deletions

8
system/main/views.py Normal file
View File

@@ -0,0 +1,8 @@
from django.shortcuts import render
from django.views.generic import View
# Простое отображение страницы заглушки.
class MainView(View):
template_name = 'index.html'
def get(self, request):
return render(request, self.template_name)