Files @ 3118e4c11c59
Branch filter:

Location: symposion_app/pinaxcon/templates/_form_snippet.html

Christopher Neugebauer
Friday fixes (#36)

* Monkey-patches a version of send_email that allows BCCs into the django accounts signup process. wtf, etc.

* Adds alt-text to site header

* Favicon.
{% load lca2017_tags %}

{% for field in form %}
  {% if not field.is_hidden %}
    <div class="fieldWrapper">
      <div>
        {% classname field.field.widget as widget %}
        {% if widget != "CheckboxInput" %}
          <h4><label for="{{ field.id_for_label }}">{{ field.label }}</label></h4>
          {{ field.errors }}
          {{ field }}
        {% else %}
          <label for="{{ field.id_for_label }}"><strong>{{ field.label }}</strong></label>
          {{ field }}
          {{ field.errors }}
        {% endif %}
      </div>

      {% if field.help_text %}
        <span class="help_text">{{ field.help_text|safe }}</span>
      {% endif %}

      <p></p>
    </div>
  {% endif %}
{% endfor %}