Files @ d4b0b52253ae
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/guided_registration.html

Joel Addison
Registrasion updates

Show applied vouchers on attendee registration admin page.
Add head title and page title to more areas.
Update the dashboard to show warning for empty categories and have
button to open voucher page.
Fix exception on attendee page when user does not have attendee object.
{% extends "registrasion/base.html" %}
{% load lca2018_tags %}

{% block page_title %}Buy Your Ticket{% endblock %}
{% block page_lead %}Step {{ current_step }} of {{ total_steps|add:1 }} – {{ title }} {% endblock %}

{% block scripts_extra %}
  {% for section in sections %}
    {{ section.form.media.js }}
  {% endfor %}
  <script type="text/javascript">
    postcode_label = $("label[for='id_profile-state']");
    postcode_help = $("#id_profile-state + p");
      $('#id_profile-country').change(function () {
        if ($(this).val() == 'AU' )  {
          postcode_label.addClass('label-required');
          postcode_help.show();
        } else {
          postcode_label.removeClass('label-required');
          postcode_help.hide();
        } });
        $("#id_profile-country").change();
  </script>
{% endblock %}

{% block proposals_body %}
  <form class="form-horizontal" method="POST" action="" enctype="multipart/form-data">
    {% csrf_token %}

    {% for section in sections %}
    <h2>{{ section.title }}</h2>

    {% if section.description %}
    <blockquote>{{ section.description|safe }}</blockquote>
    {% endif %}

    <fieldset>
      {% if section.discounts %}
        {% include "registrasion/discount_list.html" with discounts=section.discounts %}
      {% endif %}

      {% include "_form_snippet.html" with form=section.form %}

      <br />
    </fieldset>
    {% endfor %}

    {% if current_step > 1 %}
    <a class="btn btn-secondary" role="button" href="{{ previous_step }}">Back</a>
    {% endif %}
    <input class="btn btn-primary" type="submit" value="Next Step" />
  </form>
{% endblock %}