Reworked election list view with datetime ranges and a description.

This commit is contained in:
Jean-Baptiste Lenglet 2016-12-20 21:15:40 +01:00 committed by klmp200
parent e6b37ef332
commit 2095dd621e

View File

@ -10,18 +10,34 @@
small { small {
font-size: smaller; font-size: smaller;
} }
time {
font-weight: bolder;
}
</style> </style>
{%- endblock %} {%- endblock %}
{% block content %} {% block content %}
<h3>{% trans %}Current elections{% endtrans %}</h3> <h3>{% trans %}Current elections{% endtrans %}</h3>
<hr>
<ul>
{%- for election in object_list %} {%- for election in object_list %}
<p> <hr>
<section>
<h4>
<a href="{{ url('election:detail', election_id=election.id) }}">{{ election }}</a> <a href="{{ url('election:detail', election_id=election.id) }}">{{ election }}</a>
<small>{% trans %}From{% endtrans %} {{ election.start_date|date("l d F Y") }} {% trans %}to{% endtrans %} {{ election.end_date|date("l d F Y") }}</small> </h4>
<p>
{% trans %}Applications open from{% endtrans %}
<time datetime="{{ election.start_candidature }}">{{ election.start_candidature|date("l d F Y") }}</time> at <time>{{ election.start_candidature|time("G:i") }}</time>
{% trans %}to{% endtrans %}
<time datetime="{{ election.end_candidature }}">{{ election.end_candidature|date("l d F Y") }}</time> at <time>{{ election.end_candidature|time("G:i") }}</time>
</p> </p>
<p>
{% trans %}Polls open from{% endtrans %}
<time datetime="{{ election.start_date }}">{{ election.start_date|date("l d F Y") }}</time> at <time>{{ election.start_date|time("G:i") }}</time>
{% trans %}to{% endtrans %}
<time datetime="{{ election.end_date }}">{{ election.end_date|date("l d F Y") }}</time> at <time>{{ election.end_date|time("G:i") }}</time>
</p>
<p>{{ election.description }}</p>
</section>
{%- endfor %} {%- endfor %}
</ul>
{%- endblock %} {%- endblock %}