saufen/templates/inventory_record/show.html.twig
2025-06-08 19:25:02 +02:00

38 lines
1.2 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}InventoryRecord{% endblock %}
{% block body %}
<h1>InventoryRecord</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ inventory_record.id }}</td>
</tr>
<tr>
<th>Quantity</th>
<td>{{ inventory_record.quantity }}</td>
</tr>
<tr>
<th>Timestamp</th>
<td>{{ inventory_record.timestamp ? inventory_record.timestamp|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>CreatedAt</th>
<td>{{ inventory_record.createdAt ? inventory_record.createdAt|date('Y-m-d H:i:s') : '' }}</td>
</tr>
<tr>
<th>UpdatedAt</th>
<td>{{ inventory_record.updatedAt ? inventory_record.updatedAt|date('Y-m-d H:i:s') : '' }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_inventory_record_index') }}">back to list</a>
<a href="{{ path('app_inventory_record_edit', {'id': inventory_record.id}) }}">edit</a>
{{ include('inventory_record/_delete_form.html.twig') }}
{% endblock %}