mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
13 lines
326 B
Twig
13 lines
326 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Edit Expense{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Edit Expense</h1>
|
|
|
|
{{ include('expense/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
<a href="{{ path('app_expense_index') }}">back to list</a>
|
|
|
|
{{ include('expense/_delete_form.html.twig') }}
|
|
{% endblock %}
|