{% 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 %}
{% if task_ids|length > 0 %} Start Labeling Delete All Tasks {% else %} Import Tasks {% endif %}

{% for id in task_ids %} {% endfor %}
Task ID Completed at Completion
  {{ id }} {{ completed_at[id] }} {% if id in completions %} {% endif %}



{% endblock %}