{% extends "retrieval/base.html" %} {% block bodyclass %}dashboard2{% endblock %} {% comment %} ########################################################################### # # # Copyright (c) 2011 - Idiap Research Institute # # http://www.idiap.ch/ # # # # See file COPYING for the license associated to this software # # # ########################################################################### {% endcomment %} {% block pretitle %} {% trans 'Tasks' %} {% endblock %} {% block content %} {% if tasks %} {# table 0 - start #} {% for task in tasks %} {% ifequal task current_task %}
ID Query Target USR_THARGS USR_WEIGHTS USR_VERSION Date/time
{{task.id}} {{task.query}} {{task.target}} {{task.USR_THARGS}} {{task.USR_WEIGHTS}} {{task.USR_VERSION}} {{task.datetime}}
{# table 0 - end/intrerrupt #} {# table 0 - restart #} {% endifequal %} {% endfor %}
{# table 0 - end #} {% else %} No tasks in the database. {% endif %} {% endblock %} {% block sidebar %} {% if user.is_staff %}

{% trans 'What is a Task'%}

{% trans 'Reference for testing and training.'%}
{% trans 'HINT: misused for the automatic user settings.'%}


{% if message %}

{{ message }}

{{ form }}
{% endif %}

{% trans 'Irreversible operation'%}

{% trans 'Delete the task and all related evaluations'%}


{# button to delete the current task #}
{% endif %} {% endblock %}