{% extends "global/Page.html" %}
{% load static %}
{% block styles %}
{% endblock %}
{% block content %}
You have almost reached the end of the study. However, we still want to ask you a couple of questions.
Please select the response that best reflects your agreement with each statement:
(1 = Strongly disagree, 7 = Strongly agree)
| I usually trust people until they give me a reason not to trust them. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_1 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_1 %}
| {{ choice|safe }} |
{% endfor %}
| I generally give people the benefit of the doubt when I first meet them. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_2 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_2 %}
| {{ choice|safe }} |
{% endfor %}
| My typical approach is to trust new acquaintances until they prove I should not trust them. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_3 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_3 %}
| {{ choice|safe }} |
{% endfor %}
| People are usually out for their own good. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_4 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_4 %}
| {{ choice|safe }} |
{% endfor %}
| People pretend to care more about one another than they really do. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_5 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_5 %}
| {{ choice|safe }} |
{% endfor %}
| Most people inwardly dislike putting themselves out to help other people. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_6 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_6 %}
| {{ choice|safe }} |
{% endfor %}
| Most people would tell a lie if they could gain by it. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_7 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_7 %}
| {{ choice|safe }} |
{% endfor %}
| People don’t always hold to the standard of honesty they claim. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_8 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_8 %}
| {{ choice|safe }} |
{% endfor %}
| Most people would cheat on their income tax if they thought they could get away with it. |
| Strongly disagree | |
Strongly agree |
{% for choice in form.suspicious_9 %}
| {{ choice.label }} |
{% endfor %}
{% for choice in form.suspicious_9 %}
| {{ choice|safe }} |
{% endfor %}
{% next_button %}
{% endblock %}