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

{{ subtitle }}

{% csrf_token %} {% for tag in lot_tags %}
{{ tag }}
{% for lot in lots %} {% if lot.type == tag %}
{{ lot.name }}
{% endif %} {% endfor %} {% endfor %}
{% endblock %}