{% extends 'base.html.twig' %}
{% block title %}Canton{% endblock %}
{% block body %}
Canton
Id |
{{ canton.id }} |
Label |
{{ canton.label }} |
NbBureaux |
{{ canton.nbBureaux }} |
NbBureauxDepouilles |
{{ canton.nbBureauxDepouilles }} |
NbInscrits |
{{ canton.nbInscrits }} |
NbVote |
{{ canton.nbVote }} |
NbVoteBlancs |
{{ canton.nbVoteBlancs }} |
Liste index
Id |
Name |
voix 2018 |
voix 2012 |
prct2018 |
prct 2012 |
actions |
{% for liste in canton.lists %}
{{ liste.id }} |
{{ liste.label }} |
{{ liste.voix2018 }} |
{{ liste.voix2012 }} |
{{ liste.prct2018 }} |
{{ liste.prct2012 }} |
show
edit
|
{% else %}
no records found |
{% endfor %}
back to list
edit
{{ include('canton/_delete_form.html.twig') }}
{% endblock %}