blob: c54b63732fc5a4161d77c0eefbe384a46c51df6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends 'website/templates/base.html' %}
{% block content %}
<h4>Recent Questions</h4>
{% for question in questions %}
<div class="question">
<div class="title">
<a href="">{{ question.title }}</a>
</div>
<span class="category">
<small>{{ question.category }}</small>
</span>
<span class="tutorial">
<small>{{ question.tutorial}}</small>
</span>
<span class="minute_range">
<small>{{ question.minute_range }} min</small>
</span>
<span class="second_range">
<small>{{ question.second_range }} sec</small>
</span>
</div>
{% endfor %}
{% endblock %}
|