Election bdd + first view

This commit is contained in:
2016-12-05 20:18:03 +01:00
parent 0280a65623
commit d685e9ba29
13 changed files with 197 additions and 1 deletions

View File

@ -0,0 +1,13 @@
{% extends "core/base.jinja" %}
{% block title %}
{% trans %}Election list{% endtrans %}
{% endblock %}
{% block content %}
{% for el in object_list %}
{% if el.is_active %}
<p>{{el}}</p>
{% endif %}
{% endfor %}
{% endblock %}