{% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% block app_content %}

Manage Tasks Automatically

{{ wtf.quick_form(form_auto, button_map={'assign': 'success'}) }}

Manage Tasks Manually

{{ wtf.quick_form(form_manual, button_map={'assign': 'primary', 'delete': 'danger'}) }}

Task Overview

{% for task in tasks %} {% endfor %}
Task ID Dataset Name Username Status Completed On
{{ task.id }} {{ task.dataset.name }} {{ task.user.username }} {% if task.done %}Completed{% else %}Pending{% endif %} {% if task.done %}{{ task.annotated_on }}{% else %}{% endif %}
{% endblock %}