caisse-bliss/templates/selling/show.html.twig
2025-02-09 16:39:38 +01:00

39 lines
947 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Selling{% endblock %}
{% block body %}
<h1>Selling</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ selling.id }}</td>
</tr>
<tr>
<th>Note</th>
<td>{{ selling.note }}</td>
</tr>
<tr>
<th>Products</th>
<td>{{ selling.products }}</td>
</tr>
<tr>
<th>Sum</th>
<td>{{ selling.sum }}</td>
</tr>
<tr>
<th>Reduction</th>
<td>{{ selling.reduction }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_selling_index') }}">back to list</a>
<a href="{{ path('app_selling_edit', {'id': selling.id}) }}">edit</a>
{{ include('selling/_delete_form.html.twig') }}
{% endblock %}