up templates

This commit is contained in:
Tykayn 2025-02-09 16:39:38 +01:00 committed by tykayn
parent 71bce538af
commit a39b6239b0
71 changed files with 1536 additions and 262 deletions

View file

@ -0,0 +1,30 @@
{% extends 'base.html.twig' %}
{% block title %}Expense{% endblock %}
{% block body %}
<h1>Expense</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ expense.id }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ expense.name }}</td>
</tr>
<tr>
<th>Price</th>
<td>{{ expense.price }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_expense_index') }}">back to list</a>
<a href="{{ path('app_expense_edit', {'id': expense.id}) }}">edit</a>
{{ include('expense/_delete_form.html.twig') }}
{% endblock %}