BrickTracker/templates/missing.html

15 lines
354 B
HTML
Raw 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>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='scripts/table.js') }}"></script>
2025-01-17 11:03:00 +01:00
{% endblock %}