aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/manage.html
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-06-05 17:18:43 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-06-05 17:18:43 +0100
commit224c1071049243a0d47b22565398ceac2a094732 (patch)
treeae4f4e50b674246bdaafcb231a6d5d90d22093de /app/templates/admin/manage.html
parentupdate changelog (diff)
downloadAnnotateChange-224c1071049243a0d47b22565398ceac2a094732.tar.gz
AnnotateChange-224c1071049243a0d47b22565398ceac2a094732.zip
Rename manage to manage_tasks
Diffstat (limited to 'app/templates/admin/manage.html')
-rw-r--r--app/templates/admin/manage.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/app/templates/admin/manage.html b/app/templates/admin/manage.html
deleted file mode 100644
index 5c10e02..0000000
--- a/app/templates/admin/manage.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% extends "base.html" %}
-{% import 'bootstrap/wtf.html' as wtf %}
-
-{% block app_content %}
-<h1>Manage Tasks</h1>
-<div class="row">
- <div class="col-md-4">
- {{ wtf.quick_form(form, button_map={'assign': 'primary', 'delete': 'danger'}) }}
- </div>
-</div>
-<br>
-<h1>Task Overview</h1>
-<article class="overview">
- <table class="table table-striped">
- <thead class="thead-dark">
- <th scope="col">Task ID</th>
- <th scope="col">Dataset Name</th>
- <th scope="col">Username</th>
- <th scope="col">Status</th>
- <th scope="col">Completed On</th>
- </thead>
- {% for task in tasks %}
- <tr>
- <th scope="row">{{ task.id }}</th>
- <td>{{ task.dataset.name }}</td>
- <td>{{ task.user.username }}</td>
- <td>{% if task.done %}Completed{% else %}Pending{% endif %}</td>
- <td>{% if task.done %}{{ task.annotated_on }}{% else %}{% endif %}</td>
- </tr>
- {% endfor %}
- </tr>
- </table>
-</article>
-{% endblock %}