15 lines
332 B
HTML
15 lines
332 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - All parts{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container-fluid px-0">
|
|
{% with all=true %}
|
|
{% include 'part/table.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="{{ url_for('static', filename='scripts/table.js') }}"></script>
|
|
{% endblock %} |