Select Git revision
index.html 718 B
{% extends 'server_ui/templates/base.html' %}
{% block title %}{{ settings.SITE_TITLE }}{% endblock %}
{% block header %}
<h2>{{ settings.SITE_TITLE }}</h2>
{% endblock %}
{% block content %}
<p>
Welcome to the {{settings.SITE_TITLE}} system!
</p>
<p>
{{settings.WELCOME_MESSAGE|safe}}
</p>
{% if create_p %}
<a href="{% url helios.views.election_new %}">create election</a>
|
<a href="{% url helios.views.elections_administered %}">elections you administer</a>
{% endif %}
<p style="font-size: 1.4em;">
Current Elections:
<ul>
{% for election in elections %}
<li> <a href="{% url helios.views.election_shortcut election.short_name %}">{{election.name}}</a></li>
{% endfor %}
</ul>
</p>
{% endblock %}