Files @ a26f9a6f1864
Branch filter:

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

Tobias
Fix for required-fields tag
{% extends "registrasion/base.html" %}
{% load registrasion_tags %}
{% load lca2018_tags %}
{% load staticfiles %}

{% block header_title %}{% conference_name %}{% endblock %}
{% block header_paragraph %}
  <p>Monday 22 January&ndash;Friday 26 January 2018.</p>
  <p>University of Technology Sydney, New South Wales, Australia.</p>
{% endblock %}
{% block header_inset_image %}{% illustration "LCA18_nodate.svg" %}{% endblock %}
{% block header_background_image %}{% static "lca2018/images/wp_bg_optimised.jpg" %}{% endblock %}
{% block content %}

<div class="hidden-print">
{% if invoice.is_unpaid %}
  <p>
    <strong>NOTICE:</strong> The below invoice is automatically generated, and 
    will be voided if you amend your selections before payment, or if discounts
    or products contained in the invoice become unavailable. The products and
    discounts are only reserved until the invoice due time, please pay before then
    to guarantee your selection. Late payments are accepted only if the products
    and discounts are still available.</p>

  {% url "invoice_access" invoice.user.attendee.access_code as access_url %}
  <p>Your most recent unpaid invoice will be available at
    <a href="{{ access_url }}">{{ request.scheme }}://{{ request.get_host }}{{ access_url }}</a>
    You can print that page for your records, or give this URL to your accounts department to pay for this invoice</p>

  <div class="btn-group">
    <a class="btn btn-default" href='{% url "registripe_card" invoice.id invoice.user.attendee.access_code %}'>Pay this invoice by card</a>
    {% if user.is_staff %}
      <a class="btn btn-default" href="{% url "manual_payment" invoice.id %}">Apply manual payment</a>
    {% endif %}
  </div>
{% elif invoice.is_paid %}
  {% if user.is_staff %}
  <div class="btn_group">
    {% if user.is_staff %}
    <a class="btn btn-default" href="{% url "manual_payment" invoice.id %}">Apply manual payment/refund</a>
    <a class="btn btn-default" href="{% url "refund" invoice.id %}">Refund by issuing credit note</a>
    {% endif %}
  </div>
  {% endif %}
{% endif %}
</div>
<hr />

{% include "registrasion/_invoice_details.html" %}

{% endblock %}