{% extends "base.html" %} {% block content %}
{{ inventory_list[0][5] }}
{% for brick in inventory_list %} {% endfor %}
Name Color Qty Missing
{{ brick[3] }} {{ brick[7] }} {{ brick[8] }}
{% set ns = namespace(count='') %}
{% for missing in missing_list %} {% if missing[1] == brick[1] and missing[2] == brick[2] and missing[3] == brick[6] and missing[5] == brick[10] %} {% set ns.count = missing[4] %} {% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}