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

{{ representative.full_name }}

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

{{ 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" and mandate.active %}

{{ mandate.role }} of {{ mandate.group.name }} ({{ mandate.group.abbreviation }})

{% endif %} {% endfor %}

Mandates

{% for mandate in representative.active_mandates %}

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

{{ mandate.begin_date }} to {{ mandate.end_date }}
{{ mandate.group.kind }} : {{ mandate.group.name }} ({{ mandate.group.abbreviation }})
Constituency : {{ mandate.constituency.name }}


{% endfor %}

Former mandates

{% for mandate in representative.former_mandates %}

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

{{ mandate.begin_date }} to {{ mandate.end_date }}
{{ mandate.group.kind }} : {{ mandate.group.name }} ({{ mandate.group.abbreviation }})
Constituency : {{ mandate.constituency.name }}


{% endfor %} {% endblock %}