aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/manage_datasets.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/admin/manage_datasets.html')
-rw-r--r--app/templates/admin/manage_datasets.html20
1 files changed, 11 insertions, 9 deletions
diff --git a/app/templates/admin/manage_datasets.html b/app/templates/admin/manage_datasets.html
index f14fe81..f68259f 100644
--- a/app/templates/admin/manage_datasets.html
+++ b/app/templates/admin/manage_datasets.html
@@ -42,18 +42,20 @@
<thead class="thead-dark">
<th scope="col">ID</th>
<th scope="col">Name</th>
- <th scope="col">Assigned Tasks</th>
- <th scope="col">Completed Tasks</th>
- <th scope="col">Percentage</th>
+ <th scope="col">Demo</th>
+ <th scope="col">Assigned Tasks</th>
+ <th scope="col">Completed Tasks</th>
+ <th scope="col">Percentage</th>
</thead>
{% for entry in overview %}
<tr>
- <th scope="row">{{ entry['id'] }}</th>
- <td>{{ entry['name'] }}</td>
- <td>{{ entry['assigned'] }}</td>
- <td>{{ entry['completed'] }}</td>
- <td>{{ entry['percentage'] }}</td>
- </tr>
+ <th scope="row">{{ entry['id'] }}</th>
+ <td>{{ entry['name'] }}</td>
+ <td>{% if entry['demo'] %}Yes{% else %}No{% endif %}</td>
+ <td>{{ entry['assigned'] }}</td>
+ <td>{{ entry['completed'] }}</td>
+ <td>{{ entry['percentage'] }}</td>
+ </tr>
{% endfor %}
</tr>
</table>