{% extends "base.html" %} {% block styles %} {{ super() }} {% endblock %} {% block app_content %} {% if current_user.is_authenticated %}

Hi, {{ current_user.username }}!

{% if tasks_todo %}

Annotations to be done


Below are the datasets that we've asked you to annotate, thank you very much for your help!


{% for task in tasks_todo %} {% endfor %}
Name
{{ task.dataset.name }}
{% elif tasks_todo|length == 0 and tasks_done|length > 0 %}
No more annotations to do! Thank you so much for your help, you rock!
{% else %} There are no datasets for you to annotate at the moment, please check back again later. Thank you! {% endif %} {% if tasks_done %}

Completed Annotations

{% for task in tasks_done %} {% endfor %}
Name Completed On
{{ task.dataset.name }} {{ task.annotated_on }}
{% endif %} {% else %}
Welcome to AnnotateChange a tool for annotating time series data for changepoint analysis.

Please log in or register to get started.
{% endif %} {% endblock %}