{% extends "base.html" %} {% load i18n has_group %} {% block pagetitle %}Sessions{% endblock %} {% block extra_head %} {% endblock %} {% block main %}
{% if user.current_task %}

Current session


{{ user.current_task.topic.title }}
{% if user.current_task.topic.number %} #{{ user.current_task.topic.number }} {% endif %}
{% if user.current_task.topic.description %}

{{ user.current_task.topic.description }}

{% endif %}

Seed query: {{ user.current_task.topic.seed_query }}

Strategy: {{ user.current_task.get_strategy_display }}

{% if task.task_obj.max_number_of_judgments > 0 %}

Effort (max judgments): {{ task.task_obj.max_number_of_judgments }}

{% endif %} Created {{ user.current_task.created_at }}
{% else %}

Please create a session


You currently do not have an active session.

{% endif %}
{% if tasks %}
{% if tasks %}

Your sessions


{% else %}

Please create or select a session


There are currently no sessions..

{% endif %} {% for task in tasks %}
{{ task.task_obj.topic.title }}

{% if task.task_obj.topic.description %} {{ task.task_obj.topic.description }} {% else %} Topic description is unavailable. {% endif %}

Created {{ task.task_obj.created_at }}

{% csrf_token %} {% if user.current_task != task.task_obj %} Delete {% else %} Delete{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}