{% extends "base.html" %} {% load i18n has_group crispy_forms_tags %} {% block pagetitle %}Home{% 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): {{ user.current_task.max_number_of_judgments }}

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

Please create a session


You currently don't have an active session. Please create a session first.

{% endif %}
{% if user.current_task %}

Judgments


Type CAL Search All
Highly relevant {{ total_highlyRelevant_CAL }} {{ total_highlyRelevant_search }} {{ total_highlyRelevant_CAL|add:total_highlyRelevant_search }}
Relevant {{ total_relevant_CAL }} {{ total_relevant_search }} {{ total_relevant_CAL|add:total_relevant_search }}
Non relevant {{ total_nonrelevant_CAL }} {{ total_nonrelevant_search }} {{ total_nonrelevant_CAL|add:total_nonrelevant_search }}
{% endif %}

Create new session


{% csrf_token %} {% crispy form_topic %}
{% csrf_token %} {% crispy form %}
{% endblock %} {% block extra_scripts %} {% endblock %}