diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-25 15:50:00 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-25 15:50:00 +0000 |
| commit | 688ef7a3305ca0f46c44e9145477b028ba268efa (patch) | |
| tree | 8710415866aac42b75c88eaf6f2c9a7b507115ce /app/templates | |
| parent | Start work on annotation view (diff) | |
| download | AnnotateChange-688ef7a3305ca0f46c44e9145477b028ba268efa.tar.gz AnnotateChange-688ef7a3305ca0f46c44e9145477b028ba268efa.zip | |
Add assignment template
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/admin/assign.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/templates/admin/assign.html b/app/templates/admin/assign.html new file mode 100644 index 0000000..44c6bf7 --- /dev/null +++ b/app/templates/admin/assign.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} +{% import 'bootstrap/wtf.html' as wtf %} + +{% block app_content %} +<h1>Assign Task</h1> +<div class="row"> + <div class="col-md-4"> + {{ wtf.quick_form(form) }} + </div> +</div> +<article class="overview"> + <table> + <tr> + <th>User ID</th> + <th>Username</th> + <th>Dataset ID</th> + <th>Dataset Name</th> + <th>Status</th> + <th>Completed On</th> + </tr> + {% for task in tasks %} + <tr> + <td>{{ task.user_id }}</td> + <td>{{ task.username }}</td> + <td>{{ task.dataset_id }}</td> + <td>{{ task.dataset_name }}</td> + <td>{{ task.done }}</td> + <td>{{ task.completed_on }}</td> + </tr> + {% endfor %} + </tr> + </table> +</article> +{% endblock %} |
