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


{{ _('Welcome to Onni') }}



This is the Human Emotion Systems laboratorys stimulus rating tool. If you have previously started a rating task you can continue that task on this page. If you are a researcher you can create new rating tasks by logging in. Or you can start a new rating task and start rating by selecting a task from the database list below.

You can choose the language suitable for you from the language menu in the upper right corner

List of experiments in database:

{% 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 %}