List of experiments in database:
{% block attributes %}
{% for exp in experiments %}
{% if exp.status == 'Public' %}
- Name: {{ exp.name }}
- Instruction: {{ exp.instruction }}
{% if current_user.is_authenticated %}
- ID number: {{ exp.idexperiment }}
- Language: {{ exp.language }}
- Status: {{ exp.status }}
{% endif %}
-
Continue task
{% if current_user.is_authenticated %}
Statistics
View / Edit
{% endif %}
{% endif %}
{% if (exp.status == 'Hidden') and (current_user.is_authenticated) %}
Unpublished experiment:
- Name: {{ exp.name }}
- Instruction: {{ exp.instruction }}
{% if current_user.is_authenticated %}
- ID number: {{ exp.idexperiment }}
- Language: {{ exp.language }}
- Status: {{ exp.status }}
{% endif %}
-
Continue task
{% if current_user.is_authenticated %}
Statistics
View / Edit
{% endif %}
{% endif %}
{% endfor %}
{% endblock %}