diff options
Diffstat (limited to 'app/templates/admin/manage.html')
| -rw-r--r-- | app/templates/admin/manage.html | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/templates/admin/manage.html b/app/templates/admin/manage.html index 1bba769..c0668e3 100644 --- a/app/templates/admin/manage.html +++ b/app/templates/admin/manage.html @@ -14,9 +14,7 @@ <table class="table table-striped"> <thead class="thead-dark"> <th scope="col">Task ID</th> - <th scope="col">User ID</th> <th scope="col">Username</th> - <th scope="col">Dataset ID</th> <th scope="col">Dataset Name</th> <th scope="col">Status</th> <th scope="col">Completed On</th> @@ -24,9 +22,7 @@ {% for task in tasks %} <tr> <th scope="row">{{ task.id }}</th> - <td>{{ task.user.id }}</td> <td>{{ task.user.username }}</td> - <td>{{ task.dataset.id }}</td> <td>{{ task.dataset.name }}</td> <td>{% if task.done %}Completed{% else %}Pending{% endif %}</td> <td>{{ task.annotated_on }}</td> |
