Files @ 34509d23eb9f
Branch filter:

Location: symposion_app/pinaxcon/templates/_form_snippet.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
{% load lca2018_tags %}
{% load lca2019_tags %}
{% load bootstrap %}
{% load crispy_forms_tags %}

{% if form.non_field_errors %}
  <div class="has-errors">
    {{ form.non_field_errors }}
  </div>
  <br/>
{% endif %}

<p>
{% if form|has_required_fields %}
Fields marked with a * are required.
{% endif %}
{% if form|has_price_fields %}
<strong>Item prices are before any discount.</strong>
{% endif %}
</p>

{{ form|crispy }}