/
AnVod
/
WebDJProject
Обзор
Документация
Войти
/
AnVod
/
WebDJProject
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ZeroCoder/main/views.py
19 строк
506 B
ANVod
fixit
27 авг 2024, 23:53
27 авг 2024, 23:53
c907ab5
Код
Авторство
О чём код?
from django.shortcuts import render from django.http import HttpResponse def index(request): return render(request, 'main/index.html', {'caption': "CatDjango"}) def new(request): return render(request, 'main/new.html') def home(request): return render(request, 'main/home.html') def about(request): return render(request, 'main/about.html') def services(request): return render(request, 'main/services.html') def contact(request): return render(request, 'main/contact.html')