diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-05 17:18:43 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-05 17:18:43 +0100 |
| commit | 224c1071049243a0d47b22565398ceac2a094732 (patch) | |
| tree | ae4f4e50b674246bdaafcb231a6d5d90d22093de /app/templates/admin/manage.html | |
| parent | update changelog (diff) | |
| download | AnnotateChange-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.html | 34 |
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 %} |
