diff --git a/pinaxcon/templates/registrasion/guided_registration.html b/pinaxcon/templates/registrasion/guided_registration.html new file mode 100644 index 0000000000000000000000000000000000000000..24e22c39d31085127693f67b184438d8242b3586 --- /dev/null +++ b/pinaxcon/templates/registrasion/guided_registration.html @@ -0,0 +1,36 @@ +{% extends "registrasion/base.html" %} +{% load bootstrap %} + +{% block body %} + +

Conference Registration – {{ title }}

+ +

Step {{ current_step }} of {{ total_steps|add:1 }}

+ +
+ {% csrf_token %} + + {% for section in sections %} +

{{ section.title }}

+ + {% if section.description %} +

{{ section.description }}

+ {% endif %} + + {% if section.discounts %} +

You have the following discounts available to you:

+ {% include "registrasion/discount_list.html" with discounts=section.discounts %} + {% endif %} + +
+ {{ section.form|bootstrap }} +
+ {% endfor %} + +
+ +
+
+ + +{% endblock %}