{% extends "global/Page.html" %}
{% load otree static %}
{% block styles %}
{% endblock %}
{% block title %}
Bewertung -
{% if player.round_number == 1 %} Dringlichkeit
{% elif player.round_number == 2 %} Impact
{% elif player.round_number == 3 %} Begeisterung
{% elif player.round_number == 4 %} Machbarkeit
{% elif player.round_number == 5 %} Persönlicher Fit
{% endif %}
{% endblock %}
{% block content %}
{% if player.round_number == 1 %}
Als wie dringlich bewertest du das von der Idee angegangene Problem
auf einer Skala von 1 (= überhaupt nicht) bis 10 (= extrem)?
{% elif player.round_number == 2 %}
Wie bewertest du den Beitrag (impact) dieser Idee zur Lösung des adressierten Problems
auf einer Skala von 1 (= minimal) bis 10 (= extrem gross)?
{% elif player.round_number == 3 %}
Wie enthusiastisch bist du bezüglich dieser Idee
auf einer Skala von 1 (= überhaupt nicht) bis 10 (= extrem)?
{% elif player.round_number == 4 %}
Inwiefern denkst du, ist es möglich mit der Arbeit an dieser Idee alleine zu starten
auf einer Skala von 1 (= überhaupt nicht) bis 10 (= sehr einfach)?
{% elif player.round_number == 5 %}
Wie bewertest du Fraukes persönlichen Fit mit dieser Idee (Skills, Interessen, ...)
auf einer Skala von 1 (= gar keine Überlappung) bis 10 (= extrem große Überlappung)?
{% endif %}
Umwelt
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter < 30 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endfor %}
Politische Teilhabe
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter > 29 %}
{% if forloop.counter < 33 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Bildung
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter > 32 %}
{% if forloop.counter < 37 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Qualität von Entscheidungen
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter > 36 %}
{% if forloop.counter < 46 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Gesellschaftlicher Zusammenhalt
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter > 45 %}
{% if forloop.counter < 49 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}
Globale Gesundheit
|
|
|
|
|
|
|
|
|
|
|
|
{% for field in form %}
{% if forloop.counter > 48 %}
| {{ field.label }} |
{% for choice in field %}
{{ choice.tag }} |
{% endfor %}
{% endif %}
{% endfor %}
{% next_button %}
{% endblock %}