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

{{ title }}

Add a sponsor to support the hackathon

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

{{ form.organization.errors.0 }}

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

{{ form.sponsor_level.errors.0 }}

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

{{ form.logo.errors.0 }}

{% endif %}

Upload a logo for the sponsor (optional)

{{ form.website }} {% if form.website.errors %}

{{ form.website.errors.0 }}

{% endif %}
Cancel
{% endblock %}