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.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/templates/admin/manage_datasets.html b/app/templates/admin/manage_datasets.html
new file mode 100644
index 0000000..20d6d9e
--- /dev/null
+++ b/app/templates/admin/manage_datasets.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block app_content %}
+<h1>Manage Datasets</h1>
+<br>
+<h1>Task Completion Overview</h1>
+<article class="overview">
+ <table class="table table-striped">
+ <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>
+ </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>
+ {% endfor %}
+ </tr>
+ </table>
+</article>
+{% endblock %}