-
Notifications
You must be signed in to change notification settings - Fork 0
/
submitted.html
56 lines (54 loc) · 1.67 KB
/
submitted.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{% extends "layout.html" %}
{% block title %}
Submitted
{% endblock %}
{% block main %}
<header style="font-size: 30px"><strong><mark>{{ o[0]['title'] }}</mark></strong></header>
<header style="font-size: 11px"><mark>Forum</mark></header>
{% if t != 'Nonee' %}
{% for i in range(lo) %}
<div>
<div>
<p><b><mark>
Question:: {{ t[i]['question'] }}
</mark></b></p>
</div>
<div >
<p><b><mark>
A) {{ t[i]['o1'] }}
</mark></b></p>
<p><b><mark>
B) {{ t[i]['o2'] }}
</mark></b></p>
<p><b><mark>
C) {{ t[i]['o3'] }}
</mark></b></p>
<p><b><mark>
D) {{ t[i]['o4'] }}
</mark></b></p>
</div>
<p><b><mark>
Your response: {{ r1[i]['response'] }}
</mark></b></p>
</div>
<hr>
{% endfor %}
{% endif %}
{% if r != 'Nonee' %}
{% for i in range(ls) %}
<div>
<div >
<p><b><mark>
Question:: {{ r[i]['question'] }}
</mark></b></p>
</div>
<div>
<p><b><mark>
Your response: {{ r2[i]['response'] }}
</mark></b></p>
</div>
</div>
<hr>
{% endfor %}
{% endif %}
{% endblock %}