blob: 5279f19bc6666e87a6f61e97d0ec1acdb2166af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% if question %}
<small class="latest">
<a href="{% url 'website:get_question' question.id %}">{{ question.title }}</a>
</small>
<a class="btn btn-xs btn-block btn-primary" href="{% url 'website:filter' question.category %}">View previous questions</a>
{% else %}
<small class="latest">
Be the first to ask question.
</small>
<a class="btn btn-xs btn-block btn-primary" disabled="disabled" href="#">View previous questions</a>
{% endif %}
|