{% extends 'base.html' %} {% block content %} Back

{{ representative.full_name }}

{% for mandate in representative.mandate_set.all %} {% if mandate.group.kind == "group" %}

{{ mandate.role }} of {{ mandate.group.name }}

{% endif %} {% endfor %}

Born in {{ representative.birth_place }} the {{ representative.birth_date }} ({{ representative.get_gender_display }})

{{ representative.country.name }}

Committees

{% for mandate in representative.mandate_set.all %} {% if mandate.group.kind == "committee" %}

{{ mandate.role }} of {{ mandate.group.name }} ({{ mandate.group.abbreviation }}) {% endif %} {% endfor %} {% endblock %}