{% extends "base.html" %} {% block content %}
  • {{g.representative.name}} {{g.representative.nationality.flag|safe}}

    {%if not g.representative.is_active%}(Non acti{%if g.representative.is_female%}ve{%else%}f{%endif%}){%endif%}
  • {%if g.representative.birth_date%}
  • Né{%if g.representative.is_female%}e{%endif%} le {{g.representative.birth_date}} {%if g.representative.birth_place%}à {{g.representative.birth_place}}{%endif%}
  • {%endif%} {%if g.representative.job%}
  • Profession : {{g.representative.job}}
  • {%endif%} {%if g.representative.parpol%}
  • Parti politique : {{g.representative.parpol}}
  • {%endif%}
  • Score actuel : {{g.representative.score}}

Mandats

    {%for membership in g.representative.memberships|sort(attribute="start", reverse=True)%} {%if membership.end is none%}
  • {{membership.entity.type.name}} {{membership.entity.name}} - {{membership.role.name}} (depuis le {{membership.start.date().isoformat()}})
  • {%endif%} {%endfor%}
    {%for membership in g.representative.memberships|sort(attribute="start", reverse=True)%} {%if membership.end is not none%}
  • {{membership.entity.type.name}} {{membership.entity.name}} - {{membership.role.name}} (du {{membership.start.date().isoformat()}} au {{membership.end.date().isoformat()}})
  • {%endif%} {%endfor%}

Votes

    {%for decision in g.representative.decisions%}
  • {{membership.decision.recommendation.name}} - {{membership.decision.value}}
  • {%endfor%}
  • 15/09/2009 - Projet de loi relatif à la protection pénale de la propriété littéraire, artistique sur internet - 0.0
  • 12/05/2009 - Projet de loi favorisant la diffusion et la protection de la création sur internet - 100.0

Prises de positions

Ajouter une nouvelle prise de position
    {%for stance in g.representative.stances|sort(attribute="date", reverse=True)%}
  • {{stance.subject}} {%if stance.date%}(le {{stance.date.date()}}){%endif%}
    {{stance.extract_html|safe}}
  • {%endfor%}

Contacts

  • Website :
  • Email : abocquet(à)assemblee-nationale.fr
  • Twitter : @alainbocquet
  • Adresse postale :
{% endblock %}