{% extends "base.html" %} {% block content %}
Logo

{{_(group.description)}}

{{ _('If you are participating for a study for the first time, click on the "Begin task" -button. If you are returning to continue a previously started task, click on the "Continue task" button.') }}

{{ _('You can choose the language suitable for you from the language menu in the upper right corner.') }}

{{ _('List of experiments:') }}

{% block attributes %} {% for exp in experiments %} {% if exp.status == 'Public' and session['language'] == exp.language %}

{% endif %} {% if exp.status == 'Public' and session['language'] == "All" %}

{% endif %} {% if (exp.status == 'Private') and (current_user.is_authenticated) and session['language'] == exp.language %}

Private experiment:

{% endif %} {% if (exp.status == 'Private') and (current_user.is_authenticated) and session['language'] == "All" %}

Private experiment:

{% endif %} {% if (exp.status == 'Hidden') and (current_user.is_authenticated) and session['language'] == exp.language %}

Unpublished experiment:

{% endif %} {% if (exp.status == 'Hidden') and (current_user.is_authenticated) and session['language'] == "All" %}

Unpublished experiment:

{% endif %} {% endfor %} {% endblock %}
{% endblock %}