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

Hi, {{ current_user.username }}!

{% endif %}

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 %}

Introduction

{% if not current_user.is_introduced %} Click here to start the introduction to AnnotateChange. {% if tasks_todo|length == 0 and tasks_done|length == 0 %}

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 %}

Datasets to Annotate

Below are the datasets that we would like you to annotate, thank you very much for your help!

{% for task in tasks_todo %} {% endfor %}
Name
{% if current_user.is_admin %} {{ task.dataset.name | title }} {% else %} Dataset {{ task.dataset.id | title }} {% endif %}
{% elif tasks_todo|length == 0 and tasks_done|length > 0 %}
No more annotations to do! Thank you so much for your help, you rock!
{% endif %} {% if tasks_done %}

Completed Annotations

{% for task in tasks_done %} {% if current_user.is_admin %} {% else %} {% endif %} {% endfor %}
Name Completed On
{{ task.dataset.name | title }}Dataset {{ task.dataset.id | title }}{{ task.annotated_on }}
{% endif %} {% endif %} {% endblock %}