{% 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 %}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 %}Click the button below to start annotating!
{% else %}Click the button below to do some more annotations!
{% endif %} {% endif %} {% if tasks_done %}Below are the time series that you've annotated so far. Thanks so much for your help!
| Name | Completed On | {% for task in tasks_done %}|
|---|---|---|
| {{ task.dataset.name | title }} | {% else %}Dataset {{ task.dataset.id | title }} | {% endif %}{{ task.annotated_on }} |