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

{{ representative.full_name }}

{{ representative.country.name }} {{ representative.gender }}
Born in {{ representative.birth_place }} the {{ representative.birth_date }}

Mandates

{% for mandate in representative.mandate_set.all %}

{{ 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 %}