{% extends 'base.html' %} {% block body %}
{{ task_ids|length }} Total tasks {% if show_paths %} {{ config['input_path'] }} {% endif %}
{{ completions|length }} Total completions {% if show_paths %} {{ config['output_dir'] }} {% endif %}

Tasks sampling: {{ config['sampling'] }}

{% if task_ids|length > 0 %} Start Labeling Delete All Tasks {% else %} Import Tasks {% endif %}
{% if task_ids|length > 0 %} {% for id in task_ids %} {% endfor %}
Task ID Completed at Delete completion? Delete task?
  {{ id }} {{ completed_at[id] }} {% if id in completions %} {% endif %}
{% endif %}


{% endblock %}