{# Reusable component for clearable scale questions (1-4 radio buttons with clear option) Required parameters: - field_name: Name attribute for the radio buttons (e.g., 'interesting_scale') - field_label: Display label for the question - field_id_prefix: Prefix for radio button IDs (e.g., 'interesting') Optional parameters: - current_value: The currently selected value (for editing) - show_help: Show keyboard shortcut help text (default: false) #} {% set show_help = show_help if show_help is defined else false %}
{% for value, label in [(1, 'auf jeden Fall'), (2, 'eher ja'), (3, 'eher nein'), (4, 'auf keinen Fall')] %}
{% endfor %} {# Clear button #}
{% if show_help %}
Tasten 1–4 wählen, 0 zum Löschen, Shift+↓ vor, Shift+↑ zurück, Enter bestätigt.
{% endif %}