This commit is contained in:
Ross
2021-08-03 18:16:13 +01:00
parent 50b3d115c1
commit 179045c3fa
5 changed files with 10 additions and 1 deletions
@@ -38,6 +38,7 @@
<div>
<h3>Results as a table</h3>
<table class="table table-dark table-striped table-hover table-sm">
<thead class="thead-dark">
<tr>
<th>Candidate</th>
{% for cid in cids %}
@@ -45,6 +46,7 @@
{% endfor %}
</tr>
</thead>
{% for question in questions %}
<tr>
<td>Question {{forloop.counter}}</td>
+2
View File
@@ -38,6 +38,7 @@
<div>
<h3>Results as a table</h3>
<table class="table table-dark table-striped table-hover table-sm">
<thead class="thead-dark">
<tr>
<th>Candidate</th>
{% for cid in cids %}
@@ -45,6 +46,7 @@
{% endfor %}
</tr>
</thead>
{% for question in questions %}
<tr>
<td>Question {{forloop.counter}}</td>
+2 -1
View File
@@ -32,12 +32,13 @@
<div>
<h3>Answers as a table</h3>
<table class="table table-dark table-striped table-hover table-sm">
<thead class="thead-dark">
<tr>
<th>Candidate</th>
{% for cid in cids %}
<th>{{cid}}</th>
{% endfor %}
</thead>
</tr>
{% for question in questions %}
<tr>
+2
View File
@@ -23,10 +23,12 @@
</div>
<div>
<table>
<thead class="thead-dark">
<tr>
<th>Candidate ID</th>
<th>Score</th>
</tr>
</thead>
{% for user, value in user_answers_marks.items %}
<tr>
<td><a href="{% url 'cid_scores' user %}">{{user}}</a></td>
+2
View File
@@ -32,6 +32,7 @@
<div>
<h3>Results as a table</h3>
<table class="table table-dark table-striped table-hover table-sm">
<thead class="thead-dark">
<tr>
<th>Candidate</th>
{% for cid in cids %}
@@ -39,6 +40,7 @@
{% endfor %}
</tr>
</thead>
{% for question in questions %}
<tr>
<td>Question {{forloop.counter}}</td>