{% extends "base.html" %} {% block app_content %} {% if current_user.is_authenticated %}

Hi, {{ current_user.username }}!


Below are the annotation tasks we've asked you to do, thank you so much for your help!
{% if tasks_todo %}

Annotations to be done

    {% for task in tasks_todo %}
  1. {{ task.dataset.name }}
  2. {% endfor %}
{% else %} No more annotations to do, thanks for your help, you rock! {% endif %} {% if tasks_done %}

Completed Annotations

{% for task in tasks_done %} {{ task.dataset.name }} {% endfor %}
{% 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 %}