minimal working
This commit is contained in:
22
app/templates/pages/results.html
Normal file
22
app/templates/pages/results.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "layouts/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<td>Prisustvo (Attendance)</td>
|
||||
<td>Komentar ili pitanje (Comment or question)</td>
|
||||
</tr>
|
||||
</thead>
|
||||
{% for reply in replies %}
|
||||
<tr>
|
||||
<td>
|
||||
{{reply["attendence"]}}
|
||||
</td>
|
||||
<td>
|
||||
{{reply["comment"]}}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor%}
|
||||
</table>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user