{% extends "cuhasc/base.html" %} {% block title %}Join Team {{ team.name }}{% endblock %} {% block content %}

Join Team "{{ team.name }}"

{% csrf_token %} {{ form.as_p }} {% include "cuhasc/_language_selector.html" %}

Questionnaire

{% comment %}dir on this wrapper flips the option row via CSS (flex-direction:row reads start-to-end per the bidi direction) so RTL languages show the scale right-to-left; it does not reorder qform's choices, so option values (and thus the polarity saved by save_results) are unaffected.{% endcomment %} {% for item_field in qform %}
{{ item_field.label }}
{% if item_field.errors %}
{{ item_field.errors }}
{% endif %}
{% for radio in item_field %}
{{ radio.tag }}
{% endfor %}
{% endfor %}
{% endblock %}