{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block app_content %} {% if current_user.is_authenticated %}
Welcome to AnnotateChange, a tool for annotating time series data for changepoint analysis.
{% if not current_user.is_authenticated %}Please log in or register to get started.
{% endif %} {% if current_user.is_authenticated %}When you have finished the introduction, the datasets to annotate will appear here.
{% endif %} {% else %}Thank you for completing the introduction. If you want to revisit it, you can do so by clicking here.
{% if tasks_todo|length == 0 and tasks_done|length == 0 %}There are currently no datasets for you to annotate. Please check back again later.
{% endif %} {% endif %} {% if tasks_todo %}Below are the datasets that we would like you to annotate, thank you very much for your help!
| Name | {% for task in tasks_todo %}
|---|
| {% if current_user.is_admin %} {{ task.dataset.name | title }} {% else %} Dataset {{ task.dataset.id | title }} {% endif %} |
No more annotations to do! Thank you so much for your help,
you rock!
| Name | Completed On | {% for task in tasks_done %}|
|---|---|---|
| {{ task.dataset.name | title }} | {% else %}Dataset {{ task.dataset.id | title }} | {% endif %}{{ task.annotated_on }} |