/
tebo
/
BubblesCode
Обзор
Документация
Войти
/
tebo
/
BubblesCode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
theory/views.py
6 строк
266 B
tebo
first_commit
03 июн 2026, 15:20
03 июн 2026, 15:20
e3a5c0b
Код
Авторство
О чём код?
from django.shortcuts import render, get_object_or_404 from .models import TheoryArticle def article_detail_view(request, slug): article = get_object_or_404(TheoryArticle, slug=slug) return render(request, 'theory/article_detail.html', {'article': article})