{% load i18n util_tags %}
{% for f, role in form|izip:roles %}

Definition: {{role.definition}}

{% if role.multiplicity %} You can select up to {{ role.multiplicity }} concept{{ multiplicity|pluralize}} for this role for this relationship. {% else %} There is no limit on the number of concepts that fill this role for this relationship. {% endif %}
{% if f.errors %}
    {% for error in f.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{f}}
{% endfor %}