blob: 013ada46ba72493953c1ef7d9ea00700c55c5f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% 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-block btn-xs">
No questions to display
</a>
{% endif %}
|