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

Once you have finished the introduction you will be able to annotate real datasets.

{% endif %} {% else %}

Thank you for completing the introduction. If you want to revisit it, you can do so by clicking here.

{% endif %} {% if current_user.is_introduced %}

Doing Annotations

{% if tasks_done|length == 0 %}

Click the button below to start annotating!

{% else %}

Click the button below to do some more annotations!

{% endif %}
Click here to annotate a time series!
{% endif %} {% if tasks_done %}

Completed Annotations

Below are the time series that you've annotated so far. Thanks so much for your help!

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