{% extends "base.html" %} {% block content %}
{% csrf_token %} {% if form.subject.errors %}
    {% for error in form.subject.errors %}
  1. {{ error|escape }}
  2. {% endfor %}
{% endif %}
{% include "bootstrap_field.html" with field=form.channel %} {% include "bootstrap_field.html" with field=form.list_name %} {% include "bootstrap_field.html" with field=form.value %} {% include "bootstrap_field.html" with field=form.limit %}
{% if items %} {% for item in items|dictsortreversed:"from" %} {% endfor %}
List Author Reason From To Value
{{ item.list_name }} {{ item.author }} {{ item.reason }} {{ item.from }} {{ item.to }} {{ item.value }}
{% endif %}
{% endblock %}