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

{{ _('Welcome to the Human Emotion Systems -laboratory`s Onni-net laboratory! The experiments that are currently underway are listed below - you can participate for as many experiments you want.') }}

{{ _('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 == '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 %}