/
bubapb
/
Devops-Tools-Documentation
Обзор
Документация
Войти
/
bubapb
/
Devops-Tools-Documentation
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
DevOps-Pipeline-Python/Python/templates/polls/results.html
14 строк
372 B
JohnyDev
re-arrange-dir-close #103
13 авг 2022, 22:48
13 авг 2022, 22:48
731994c
Код
Авторство
О чём код?
{% extends 'base.html' %} {% block content %} <h1>{{ question.question_text }}</h1> <ul> {% for choice in question.choice_set.all %} <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li> {% endfor %} </ul> <a href="{% url 'polls:detail' question.id %}" class="btn btn-primary btn-sm">Vote again?</a> {% endblock %}