11 lines
241 B
HTML
11 lines
241 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - Missing parts{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container-fluid px-0">
|
|
{% with all=true, no_quantity=true %}
|
|
{% include 'part/table.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endblock %} |