Election has not started yet.
{% if election.end_date and election.start_date %}
Election period: {{ election.start_date|date:"l Y-m-d H:i:s" }} -
{{ election.end_date|date:"l Y-m-d H:i:s" }}
{% elif election.start_date %}
Election starts {{ election.start_date|date:"l Y-m-d H:i:s" }}
{% else %}
This election needs to be started manually.
{% endif %}
Election still open.
{% if election.end_date %}
Election period: {{ election.start_date|date:"l Y-m-d H:i:s" }} -
{{ election.end_date|date:"l Y-m-d H:i:s" }}
{% else %}
This election needs to be closed manually.
{% endif %}