{% extends "base.html" %}
{% block content %}
Inventory
img |
element_id |
part_num |
name |
color.id |
color |
qty |
{% for i in json_file['unit'] %}
Missing ({{ loop.index }}) |
{% endfor %}
{% for brick in inventory_file.results %}
{% if brick.is_spare == False %}
|
{{ brick.element_id }} |
{{ brick.part.part_num }} |
{{ brick.part.name }} |
{{ brick.color.id }} |
{{ brick.color.name }} |
{{ brick.quantity }} |
{% for i in json_file['unit'] %}
{% set ns = namespace(count='') %}
|
{% endfor %}
{% endif %}
{% endfor %}
Spares
img |
element_id |
part_num |
name |
color |
qty |
{% for i in json_file['unit'] %}
Missing ({{ loop.index }}) |
{% endfor %}
{% for brick in inventory_file.results %}
{% if brick.is_spare == True %}
|
{{ brick.element_id }} |
{{ brick.part.part_num }} |
{{ brick.part.name }} |
{{ brick.color.name }} |
{{ brick.quantity }} |
{% for i in json_file['unit'] %}
{% set ns = namespace(count='') %}
|
{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}