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,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Expense{% endblock %}
{% block body %}
<h1>Create new Expense</h1>
{{ include('expense/_form.html.twig') }}
<a href="{{ path('app_expense_index') }}">back to list</a>
{% endblock %}