blob: 4807b8e156b2d6239c59de35c07e812fad3fecec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.html" %}
{% block app_content %}
<h1>View Annotations</h1>
<article class="overview">
<table class="table table-striped">
<thead class="thead-dark">
<th scope="col">Dataset</th>
<th scope="col">Username</th>
<th scope="col">Changepoint Index</th>
</thead>
{% for ann in annotations %}
<tr>
<td>{{ ann.task.dataset.name }}</td>
<td>{{ ann.task.user.username }}</td>
<td>{% if ann.cp_index is none %}No CP{% else %}{{ ann.cp_index }}{% endif %}</td>
</tr>
{% endfor %}
</tr>
</table>
</article>
{% endblock %}
|