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

{% translate "WSFS Elections" %}

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

{% switch "advisory_votes" %}

{% translate "Consultative Votes" %}

{% endswitch %}
{% for election in object_list %} {% include "nominate/_election_list_entry.html" with election=election %} {% endfor %}
{% switch "advisory_votes" %}
{% for proposal in proposals %} {% include "advise/_proposal_entry_desktop.html" with proposal=proposal %} {% empty %}

No advisory votes are currently open.

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