17 lines
477 B
HTML
17 lines
477 B
HTML
{% extends 'program_base.html' %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block program_content %}
|
|
<h3>Submit {{ camp.title }} {{ eventtype.name }} <i class="fas fa-{{ eventtype.icon }}" style="color: {{ eventtype.color }};"></i></h3>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% for field in form %}
|
|
{% bootstrap_field field %}
|
|
{% endfor %}
|
|
{% bootstrap_button "Submit for Review" button_type="submit" button_class="btn-primary" %}
|
|
</form>
|
|
|
|
{% endblock program_content %}
|
|
|