{% for choice in form.role %}
{% if choice.data.value == form.instance.Role.EDITOR %}
{% translate 'Able to edit the evaluation for preparation.' as tooltip %}
{% elif choice.data.value == form.instance.Role.CONTRIBUTOR %}
{% translate 'Default value. No special rights.' as tooltip %}
{% endif %}
{% include 'choice_button.html' with formelement=form.role choice=choice tooltip=tooltip %}
{% endfor %}