diff --git a/pinaxcon/templates/registrasion/guided_registration.html b/pinaxcon/templates/registrasion/guided_registration.html deleted file mode 100644 index 24e22c39d31085127693f67b184438d8242b3586..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/guided_registration.html +++ /dev/null @@ -1,36 +0,0 @@ -{% 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 %} diff --git a/pinaxcon/templates/registrasion/profile_form.html b/pinaxcon/templates/registrasion/profile_form.html deleted file mode 100644 index 103c2ad1e42f2f76a5dbe5f86ce5d4e5b12b73aa..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/registrasion/profile_form.html +++ /dev/null @@ -1,24 +0,0 @@ -{% extends "registrasion/base.html" %} -{% load bootstrap %} - -{% block body %} - -

Your profile

- -

These details will appear on your badge, your invoices, and will be used - to order catered food at the conference.

- -
- {% csrf_token %} - - - {{ form|bootstrap }} -
- -
- -
-
- - -{% endblock %}