BrickTracker/templates/missing.html

11 lines
241 B
HTML
Raw Permalink Normal View History

2025-01-17 11:03:00 +01:00
{% extends 'base.html' %}
2024-11-21 13:40:53 +01:00
2025-01-17 11:03:00 +01:00
{% block title %} - Missing parts{% endblock %}
2024-11-21 13:40:53 +01:00
2025-01-17 11:03:00 +01:00
{% block main %}
<div class="container-fluid px-0">
{% with all=true, no_quantity=true %}
{% include 'part/table.html' %}
{% endwith %}
2024-04-26 16:57:26 +02:00
</div>
2025-01-17 11:03:00 +01:00
{% endblock %}