{% extends "base.html" %} {% load i18n advise_filters %} {% 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 %}

{% 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 %} {% endfor %}
    {% endblock %}