{% extends "base.html" %}
{% import "_partials/modals.html" as modals %}
{% block styles %}
{{ super() }}
{% endblock %}
{% block app_content %}
Manage Datasets
{{ modals.confirm("delete", "Delete Dataset", "You are about to delete the
dataset and all associated tasks and annotations. Are you sure?") }}
Task Completion Overview
ID |
Name |
Demo |
Assigned Tasks |
Completed Tasks |
Target Reached (%) |
{% for entry in overview %}
{{ entry['id'] }} |
{{ entry['name'] }} |
{% if entry['demo'] %}Yes{% else %}No{% endif %} |
{{ entry['assigned'] }} |
{{ entry['completed'] }} |
{{ entry['percentage'] }} |
{% endfor %}
{% endblock %}
{% block scripts %}
{{ super() }}
{% endblock scripts %}