{% extends "base.html" %} {% from "_formhelpers.html" import render_field %} {% block title %}{{ submit_text }}{% endblock %} {% block body %}

{{ self.title() }}

{{ render_field(form.summary) }}

This is the name of the election that users will first see.

Example: Fedora Board, November 2010

{{ render_field(form.alias) }}

A short, unique name that will be used for the election's URL. Lowercase letters, numbers, hyphens and underscores only.

Example: boardf15

{{ render_field(form.description) }}
{{ render_field(form.url) }}
{{ render_field(form.start_date, " at 00:00:00 UTC") }} {{ render_field(form.end_date, " at 23:59:59 UTC") }}

Enter dates in YYYY-MM-DD format.

{{ render_field(form.number_elected) }}

This determines the cutoff for how many candidates win the election. For example, if you are electing four empty seats on a committee, enter 4 here.

{{ render_field(form.candidates_are_fasusers) }}

Check this if every candidate in this election has a FAS user account. This will automatically pull full names and wiki page URLs from FAS.

{{ render_field(form.frontpage) }}
{{ render_field(form.embargoed) }}

Embargo results when the election is finished. To unembargo them, edit the election and uncheck this box.


{% block election_form_extra %}{% endblock %}

{{ form.csrf_token }}
{% endblock %}