{% extends "base.html" %} {% import "_partials/modals.html" as modals %} {% block styles %} {{ super() }} {% endblock %} {% block app_content %}

Manage Datasets

{{ form.hidden_tag() }} {{ form.dataset }} {{ form.delete(hidden='true', id='form-submit') }}
{{ modals.confirm("delete", "Delete Dataset", "You are about to delete the dataset and all associated tasks and annotations. Are you sure?") }}

Task Completion Overview

{% for entry in overview %} {% endfor %}
ID Name Demo Assigned Tasks Completed Tasks Target Reached (%)
{{ entry['id'] }} {{ entry['name'] }} {% if entry['demo'] %}Yes{% else %}No{% endif %} {{ entry['assigned'] }} {{ entry['completed'] }} {{ entry['percentage'] }}
{% endblock %} {% block scripts %} {{ super() }} {% endblock scripts %}