Files @ 34509d23eb9f
Branch filter:

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

bsturmfels
Make vendored symposion into an installable Python package

This allows us to install with `pip install "-e vendor/symposion"` similar to
the other vendored packages. There's no good reason for this to be different to
the others and depend on PYTHONPATH hacking.

Re-add
{% extends "registrasion/base.html" %}
{% load registrasion_tags %}

{% block proposals_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-light" href="{% url "checkout" %}?fix_errors=true">Try fixing these errors</a>
    <a class="btn btn-link" href="{% url "dashboard" %}">Return to dashboard</a>
  </div>

{% endblock %}