{% extends "base_bootstrap.html" %} {% load render_table from django_tables2 %} {% block title %}Filters{% endblock %} {% block content %}
{% if not public and user.is_authenticated %} {% if form %}
{%csrf_token%} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% for field in form.visible_fields %}
{{ field.errors }}
{{ field.label }}
{% if field.name == "promote_demote" %}
{% for radio in field %} {% endfor %}
{% elif field.name == "user_list_membership" %} {% for choice in field %}
{{ choice.tag }}
{% endfor %} {% else %} {{ field }} {% endif %}
{% endfor %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% endif %} {% endif %}
{% endblock %}