{# vim: set filetype=htmldjango #} {%- macro likert_scale(id, question, values) -%}
{{ question }}
{% for value in values %} {% set i = loop.index %} {% endfor %}
{%- endmacro -%} {%- macro likert_scale_easy_to_use(id, text) -%} {%- set question = "How difficult to use do you consider the " ~ text ~ " to be?" -%} {%- set id = id ~ ".difficulty" -%} {%- set values = [ "very difficult", "difficult", "neither difficult nor easy", "easy", "very easy" ] -%} {{ likert_scale(id, question, values) }} {%- endmacro -%} {%- macro likert_scale_important(id, text) -%} {%- set question = "How important is the " ~ text ~ " for your tasks and research questions?" -%} {%- set id = id ~ ".importance" -%} {%- set values = [ "not important at all", "less important", "neither unimportant nor important", "important", "very important" ] -%} {{ likert_scale(id, question, values) }} {%- endmacro -%} {%- macro time_used(id, text) -%}
How much time did you approximately spend using the {{ text }}?
{%- endmacro -%} {%- macro additional_comment(id, text) -%} {%- endmacro -%} {%- macro checkbox_used(id, text, verb='it') -%}
Did you use the {{ text }}?
{%- endmacro -%}