test/templates/frontend/index.html.twig

35 lines
1.1 KiB
Twig
Raw Normal View History

2024-01-18 12:39:10 +00:00
{% extends 'base.html.twig' %}
2024-01-19 07:38:32 +00:00
{% block javascripts %}
2024-02-01 10:22:12 +00:00
<script src="{{ asset('js/modals.js') }}"></script>
<script src="{{ asset('js/buttonActions.js') }}"></script>
<script src="{{ asset('js/tableActions.js') }}"></script>
<script src="{{ asset('js/printerApi.js') }}"></script>
2024-01-26 10:52:26 +00:00
<script src="{{ asset('js/frontend.js') }}"></script>
2024-01-19 07:38:32 +00:00
{% endblock %}
2024-01-18 15:35:37 +00:00
2024-01-19 07:38:32 +00:00
{% block body %}
2024-01-26 09:45:58 +00:00
<div class="container mt-5">
<h1>Printers</h1>
<button class="btn btn-primary" data-bs-target="#createModal" data-bs-toggle="modal">Create</button>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Price</th>
<th>Build Volume</th>
<th>Max Speed</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="table-body">
2024-01-18 15:35:37 +00:00
2024-01-26 09:45:58 +00:00
</tbody>
</table>
</div>
{% include "frontend/partials/_deleteModal.html.twig" %}
{% include "frontend/partials/_viewModal.html.twig" %}
{% include "frontend/partials/_createModal.html.twig" %}
{% include "frontend/partials/_editModal.html.twig" %}
2024-01-18 12:39:10 +00:00
{% endblock %}