{% extends "base.html" %} {% load static %} {% block title %} {{ title }} - Hackathon {% endblock title %} {% block content %} {% include "includes/sidenav.html" %}

{{ title }}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.name }} {% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{{ form.organization }} {% if form.organization.errors %}

{{ form.organization.errors.0 }}

{% endif %}

Only organizations where you are an admin or manager are shown.

{{ form.banner_image }} {% if form.banner_image.errors %}

{{ form.banner_image.errors.0 }}

{% endif %}

Recommended size: 1200x400 pixels

{{ form.start_time }} {% if form.start_time.errors %}

{{ form.start_time.errors.0 }}

{% endif %}
{{ form.end_time }} {% if form.end_time.errors %}

{{ form.end_time.errors.0 }}

{% endif %}
{{ form.registration_open }}
{% if form.registration_open.errors %}

{{ form.registration_open.errors.0 }}

{% endif %}
{{ form.max_participants }} {% if form.max_participants.errors %}

{{ form.max_participants.errors.0 }}

{% endif %}

Leave blank for unlimited

{{ form.description }} {% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{{ form.rules }} {% if form.rules.errors %}

{{ form.rules.errors.0 }}

{% endif %}
{{ form.repositories }} {% if form.repositories.errors %}

{{ form.repositories.errors.0 }}

{% endif %}

Select the repositories that will be part of this hackathon. Pull requests to these repositories during the hackathon period will be counted.

Sponsorship Information

{{ form.sponsor_note }} {% if form.sponsor_note.errors %}

{{ form.sponsor_note.errors.0 }}

{% endif %}

Provide information about sponsorship opportunities for this hackathon. This will be displayed on the hackathon page.

{{ form.sponsor_link }} {% if form.sponsor_link.errors %}

{{ form.sponsor_link.errors.0 }}

{% endif %}

Link to sponsorship information or application form. This will be displayed as a "Become a Sponsor" button.

Cancel
{% endblock content %} {% block scripts %} {% endblock scripts %}