{% extends "seeddb/base.html" %} {% block content %}
{{ form.non_field_errors }} {% if processed_objects %} {% for obj in processed_objects %} {% endfor %}
Status Line Input Remark
{% ifequal obj.status "ok" %} {{ obj.status }} {% else %}{% ifequal obj.status "other" %} {{ obj.status }} {% else %}{% ifequal obj.status "syntax" %} {{ obj.status }} {% else %} {{ obj.status }} {% endifequal %}{% endifequal %}{% endifequal %} {{ obj.line_number }} {{ obj.input }} {{ obj.message|capfirst }}

{% endif %} {% for field in form %}

{% if not field.is_hidden %}{{ field.label_tag }}:
{% endif %} {{ field.errors }} {{ field }}

{% endfor %} {% if not form.is_bound or not form.is_valid %}

{% endif %}
{% endblock %}