{% extends 'base.html' %} {% load staticfiles i18n %} {% block head %} {% endblock head %} {% block body %}

Bootcamp

{% trans 'Sign up for Bootcamp' %}

{% csrf_token %} {% for field in form.visible_fields %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %} {% for error in field.errors %} {% endfor %}
{% endfor %}
{% endblock body %}