File diff dfcd2acc7466 → 539fa2dfdd2b
pinaxcon/templates/registrasion/review.html
Show inline comments
...
 
@@ -2,9 +2,8 @@
 
{% load registrasion_tags %}
 
{% load lca2018_tags %}
 

	
 
{% block header_title %}Review your selection{% endblock %}
 
{% block header_inset_image %}{% illustration "wineglass.svg" %}{% endblock %}
 
{% block header_paragraph %}
 
{% block page_title %}Review your selection{% endblock %}
 
{% block page_lead %}
 
  Please ensure that you have selected all of the products you require, including
 
  t-shirts and social event tickets.
 
{% endblock %}
...
 
@@ -22,8 +21,7 @@
 
  {% if pending %}
 
  <div class="my-4">
 
    <h2>Current selection</h2>
 
    <p>You've selected the following items, which will be in your invoice when
 
      you check out:<p>
 
    <p>You've selected the following items, which will be in your invoice when you check out:<p>
 
    {% include "registrasion/_items_list.html" with items=pending %}
 
  </div>
 
  {% endif %}
...
 
@@ -39,20 +37,22 @@
 

	
 
  <div class="my-4">
 
    <h2>Modify your selection</h2>
 
    <p>
 

	
 
    {% missing_categories as missing %}
 
    {% if missing %}
 
        <strong>You have <em>not</em> selected anything from the following
 
          categories. If your ticket includes any of these, you still need to
 
          make a selection:
 
        </strong>
 
    <div class="alert alert-warning my-4 pb-4">
 
      <h4 class="alert-heading">You have empty categories</h4>
 
      <p>You have <em>not</em> selected anything from the following
 
        categories. If your ticket includes any of these, you still need to
 
        make a selection:
 
      </p>
 

	
 
      {% include "registrasion/_category_list.html" with categories=missing %}
 
      {% endif %}
 
    </p>
 
    </div>
 
    {% endif %}
 

	
 
    <p>
 
      <strong>You can also change your selection from these categories:</strong>
 
      <strong>You can change your selection from these categories:</strong>
 
      {% available_categories as available %}
 
      {% include "registrasion/_category_list.html" with categories=available exclude=missing %}
 
    </p>
...
 
@@ -64,7 +64,6 @@
 
    </p>
 
  </div>
 

	
 

	
 
  <div class="my-4">
 
    <h2>What next?</h2>
 
    {% if pending %}
...
 
@@ -88,6 +87,4 @@
 
    {% endif %}
 
  </div>
 

	
 

	
 

	
 
{% endblock %}