{% extends "base.html" %} {% load i18n advise_filters %} {% block content %}
{% if not user.is_authenticated %} {% include "bits/login_forms.html" %} {% else %}

{% translate "WSFS Elections" %}

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

{% translate "Advisory Votes" %}

{% for election in object_list %} {% include "nominate/_election_list_entry.html" with election=election %} {% endfor %}
{% for proposal in proposals %} {% if proposal|proposal_is_open_for:user %}
  • {{ proposal }}

  • {% endif %} {% empty %}

    No advisory votes are currently open.

    {% endfor %}
    {% endif %}
    {% endblock %}