{% extends "main/base.html" %} {% block title %}Staff | Jams | Form{% endblock %} {% block og_title %}Staff | Jams | Form{% endblock %} {% block og_description %}Manage the form for a code jam{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Application Form {{ jam.number }}: {{ jam.title }}

 Back {#  Preview #} {% if not questions %}

No questions found. Add one above!

{% else %}

{% for question in questions %} {% endfor %}
  ID Optional Title Type Data
{{ question.id }} {% if question.optional %} {% else %} {% endif %} {{ question.title }} {{ question.type.title() }} {% if question.type == "text" %} {% elif question.type == "number" %}  {{ question.data.max }}
 {{ question.data.min }} {% elif question.type == "checkbox" %} {% elif question.type == "email" %} {% elif question.type == "textarea" %} {% elif question.type == "radio" %}
    {% for option in question.data.options %}
  • {{ option }}
  • {% endfor %}
{% elif question.type == "range" %}  {{ question.data.max }}
 {{ question.data.min }} {% elif question.type == "slider" %}  {{ question.data.max }}
 {{ question.data.min }} {% else %} {{ question.data }} {% endif %}
{% endif %}

Add Question

{% endblock %}