blob: 44c6bf72c630c12310f22df3fb292095990801ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 %}
|