qchgk_web/templates/question.html.tera

18 lines
577 B
Plaintext
Raw Permalink Normal View History

2019-08-05 14:06:27 +00:00
{% extends "base" %} {% block title %} Вопрос {% endblock title %}
2019-08-19 12:58:47 +00:00
{% block nav %}
<li class="nav-item"><a class="nav-link text-primary" href="/q/{{ next }}">Ещё</a></li>
{% endblock nav %}
2019-08-02 10:47:16 +00:00
{% block content %}
<!-- <h1>{{ id }}</h1> -->
<div class="content-block"><div id="question" class="content-block-inner">
<p>
<h3> {{ description }} </h3>
</p>
</div></div>
<br/>
<br/>
2021-02-05 21:46:53 +00:00
<br/>
<div class="justify-content-center text-center">
<a class="btn btn-dark shadow" href="/q/{{ num }}/a/">Показать ответ</a>
</div>
2019-08-02 10:47:16 +00:00
{% endblock content %}