{% extends "base.html" %} {% load i18n %} {% block content %}

{% translate "WSFS Elections" %}

{% translate "You can access your available WSFS elections here." %}

{% if not user.is_authenticated %} {% include "bits/login_forms.html" %} {% endif %}
{% for election in object_list %} {% if forloop.first %}
{% endif %} {% include "nominate/_election_list_entry.html" with election=election %} {% if forloop.last %}
{% endif %} {% empty %} {% endfor %}
{% endblock %}