Files @ ecabf31e54b9
Branch filter:

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

Christopher Neugebauer
Assorted fixes (#47)

* Invokes the site tree fix from previous fixes.

* Adds a disclaimer noting that previous years’ accounts have not been carried over.

Fixes #43

* Adds proposal type to the proposal summary page.

Fixes #40

* Adds travel/accommodation assistance to the proposals page, but makes it only visible to speakers in the proposal, or review managers.

Fixes #41.
Fixes #42.

* Reduces a lot of the whitespace in the header and footer.

Fixes #44

* Proposals review page now shows information for every speaker on a proposal.

Fixes #45

* Makes sure that non_field_errors are displayed by forms.

Fixes #37
{% extends "registrasion/base.html" %}
{% load bootstrap %}
{% load registrasion_tags %}

{% block body %}

  <h1>Oh No!</h1>

  <p>We can't produce an invoice for you because of the following errors:</p>

  <ul>
    {% for error in error_list %}
      <li>{{ error.message }}</li>
    {% endfor %}
  </ul>

  <p>We can automatically try to remove products and vouchers that aren't available anymore,
    or you can return to the dashboard and try to fix it yourself.</p>

  <div class="form-actions">
    <a class="btn btn-default" href="{% url "checkout" %}?fix_errors=true">Try fixing these errors</a>
    <a class="btn btn-default" href="{% url "dashboard" %}">Return to dashboard</a>
  </div>

{% endblock %}