{% extends 'server_ui/templates/base.html' %} {% block title %}{{ settings.SITE_TITLE }}{% endblock %} {% block header %}

{{ settings.SITE_TITLE }}

{% endblock %} {% block content %}
{% if user %}
{{user.display_html_big|safe}}
{% if create_p %}

Administration

{% if elections_administered %} {% else %} none yet {% endif %}

[see all]

create election >
{% endif %}

Recent Votes

{% if elections_voted %} {% else %} none yet {% endif %} {% else %}

Log In to Start Voting

{{login_box|safe}} {% endif %}

{{settings.WELCOME_MESSAGE|safe}}

{% if elections|length %}

{% for election in elections %}

{{election.name}} by {{election.admin.display_html_small|safe}}
{{election.description}}

{% endfor %}

{% else %}

no featured elections at the moment

{% endif %}

{% endblock %}