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

{% for election in object_list %} {% include "nominate/_election_list_entry.html" with election=election %} {% endfor %}
{% if ADVISORY_VOTES %}

{% translate "Consultative Votes" %}

{% for proposal in proposals %} {% include "advise/_proposal_entry_mobile.html" with proposal=proposal %} {% empty %}

No advisory votes are currently open.

{% endfor %}
{% endif %}

{% translate "WSFS Elections" %}

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

{% if ADVISORY_VOTES %}

{% translate "Consultative Votes" %}

{% endif %}
{% for election in object_list %} {% include "nominate/_election_list_entry.html" with election=election %} {% endfor %}
{% if ADVISORY_VOTES %}
{% for proposal in proposals %} {% include "advise/_proposal_entry_desktop.html" with proposal=proposal %} {% empty %}

No advisory votes are currently open.

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