/
voodooley
/
python-hub-studio
Обзор
Документация
Войти
/
voodooley
/
python-hub-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
main/views.py
17 строк
428 B
voodooley
Приложение main готово
02 июл 2026, 23:22
02 июл 2026, 23:22
8acea1c
Код
Авторство
О чём код?
from django.http import HttpResponse from django.shortcuts import render def index(request): context = { 'title': 'Главная страница', 'text': 'Hello World' } return render(request, 'main/index.html', context) def about(request): context = { 'title': 'Страница о нас', 'text': 'Hello World' } return render(request, 'main/about.html', context)