{% extends "base.html" %} {% load i18n %} {% block content %}

{{ subtitle }}

{% csrf_token %} {% if incoming %}
Incoming Lots
{% for lot in lots %} {% if lot.is_incoming %}
{{ lot.name }}
{% endif %} {% endfor %} {% endif %} {% if outgoing %}
Outgoing Lots
{% for lot in lots %} {% if lot.is_outgoing %}
{{ lot.name }}
{% endif %} {% endfor %} {% endif %} {% if temporal %}
Temporary Lots
{% for lot in lots %} {% if lot.is_temporal %}
{{ lot.name }}
{% endif %} {% endfor %} {% endif %}
{% endblock %}