{% extends "base.html" %} {% block title %}Sign Up{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}
Ask for a new event on {{ problem.name }}
You will be able to change all these fields later. We will need approximate information for the decision on granting the event request.
{{ form.hidden_tag() }} Event name will be {{ problem.name }}_<suffix>. The length should be less than 20 characters, only ascii, no space. It will be used to identify the event, primarily in the url. If you plan to ask for several events for the same class or hackaton, please use the same suffix consistently.
{{ form.suffix(placeholder="event_suffix") }} {% for error in form.suffix.errors %} [{{ error }}] {% endfor %}
The title will be used on web pages to name the event. The length should be less than 80 characters. If you plan to ask for several events for the same class or hackaton, please use the same title consistently.
{{ form.title(placeholder="event_title") }} {% for error in form.title.errors %} [{{ error }}] {% endfor %}
Minimum duration between submissions.
{{ form.min_duration_between_submissions_hour() }}hours {% for error in form.min_duration_between_submissions_hour.errors %} [{{ error }}] {% endfor %} {{ form.min_duration_between_submissions_minute() }}minutes {% for error in form.min_duration_between_submissions_minute.errors %} [{{ error }}] {% endfor %} {{ form.min_duration_between_submissions_second() }}seconds {% for error in form.min_duration_between_submissions_second.errors %} [{{ error }}] {% endfor %}
Approximate number of students.
{{ form.n_students() }} {% for error in form.n_students.errors %} [{{ error }}] {% endfor %}
Opening date.
{{ form.opening_date(placeholder="YYYY-MM-DD") }} {% for error in form.opening_date.errors %} [{{ error }}] {% endfor %}
Closing date.
{{ form.closing_date(placeholder="YYYY-MM-DD") }} {% for error in form.closing_date.errors %} [{{ error }}] {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}