{% extends "base.html" %} {% block title %}Sign Up{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% endif %} {% endwith %}
Update event {{ event.name }}
{{ form.hidden_tag() }} The title will be used on web pages to name the event. The length should be less than 80 characters. If you open 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 %}
Check if RAMP admin should send mails to participants when their submissions have been trained.
{{ form.is_send_trained_mails() }} {% for error in form.is_send_trained_mails.errors %} [{{ error }}] {% endfor %}
Check if RAMP admin should send mails to event admins when participants submit.
{{ form.is_send_submitted_mails() }} {% for error in form.is_send_submitted_mails.errors %} [{{ error }}] {% endfor %}
Check if event is public. Private events can only be seen and interacted with by event admins.
{{ form.is_public() }} {% for error in form.is_public.errors %} [{{ error }}] {% endfor %}
Check if event admins control sign up. If not checked, any RAMP user can sign up.
{{ form.is_controled_signup() }} {% for error in form.is_controled_signup.errors %} [{{ error }}] {% endfor %}
Check if the event is competitive. In competitive events users may dedicate the submission with which they would like to enter in the competition. It is not mandatory: if there is no dedicated submission, the best one according to the public leaderboard score will enter in the competition.
{{ form.is_competitive() }} {% for error in form.is_competitive.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 %}
The event will appear at this time in the list of events, sign-ups and submissions will be opened.
{{ form.opening_timestamp() }} {% for error in form.opening_timestamp.errors %} [{{ error }}] {% endfor %}
The private leaderboard will be opened for participants at this time.
{{ form.closing_timestamp() }} {% for error in form.closing_timestamp.errors %} [{{ error }}] {% endfor %}
The links to submission codes will come alive at this time, signaling the start of the collaborative phase.
{{ form.public_opening_timestamp() }} {% for error in form.public_opening_timestamp.errors %} [{{ error }}] {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}