blob: 76edbcd1574af801ea7d76ede284706f4797008d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{% extends "base.html" %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{url_for('static', filename='user_index.css')}}">
{% endblock %}
{% block app_content %}
{% if current_user.is_authenticated %}
<h1>Hi, {{ current_user.username }}!</h1>
{% if tasks_todo %}
<h2>Annotations to be done</h2>
<br>
<p>
Below are the datasets that we've asked you to annotate, thank you
very much for your help!
</p>
<br>
<div class="tasks-todo">
<table class="table table-striped">
<thead class="thead-dark">
<th scope="col">Name</th>
</thead>
{% for task in tasks_todo %}
<tr>
<td><a href="/annotate/{{ task.id }}">{{ task.dataset.name }}</a></td>
</tr>
{% endfor %}
</table>
</div>
{% elif tasks_todo|length == 0 and tasks_done|length > 0 %}
<div id="done">
<img src="/static/done.png">
<span>No more annotations to do! Thank you so much for your
help, <b>you rock!</b></span>
</div>
{% else %}
<span>There are no datasets for you to annotate at the moment, please
check back again later. Thank you!</span>
{% endif %}
{% if tasks_done %}
<h2>Completed Annotations</h2>
<div class="tasks-done">
<table class="table table-striped">
<thead>
<th scope="col">Name</th>
<th scope="col">Completed On</th>
</thead>
{% for task in tasks_done %}
<tr>
<td>{{ task.dataset.name }}</td>
<td>{{ task.annotated_on }}</td>
</tr>
{% endfor %}
</table>
</div>
{% endif %}
{% else %}
<article>
<div>
Welcome to <i>AnnotateChange</i> a tool for annotating time
series data for changepoint analysis.
<br>
<br>
Please log in or register to get started.
</div>
</article>
{% endif %}
{% endblock %}
|