17 lines
467 B
HTML
17 lines
467 B
HTML
|
{% extends "base.html" %} {% block title %} Вопрос {% endblock title %}
|
||
|
|
||
|
{% 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/>
|
||
|
<br/><details>
|
||
|
<nav class="nav nav-pills container justify-content-center">
|
||
|
<a class="nav-link" href="/q/{{ num }}/a/">Ответ</a>
|
||
|
</nav></details>
|
||
|
|
||
|
{% endblock content %}
|