15 lines
473 B
Python
15 lines
473 B
Python
from django.shortcuts import render
|
|
from django.views.generic import View, TemplateView
|
|
|
|
|
|
# Простое отображение страницы заглушки.
|
|
class MainView(TemplateView):
|
|
template_name = 'index.html'
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
context = {
|
|
'title': 'Объявления',
|
|
"message_hello": "Тут какой-то мессадж."
|
|
}
|
|
return render(request, 'index.html', context)
|