BrickTracker/templates/parts.html

11 lines
219 B
HTML
Raw Normal View History

2025-01-17 11:03:00 +01:00
{% extends 'base.html' %}
2025-01-17 11:03:00 +01:00
{% block title %} - All parts{% endblock %}
2025-01-17 11:03:00 +01:00
{% block main %}
<div class="container-fluid px-0">
{% with all=true %}
{% include 'part/table.html' %}
{% endwith %}
</div>
2025-01-17 11:03:00 +01:00
{% endblock %}