🎉 first commit

This commit is contained in:
2026-07-18 00:01:27 +02:00
commit 78346ffece
63 changed files with 11664 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Todo{% endblock %}
{% block body %}
<h1>Create new Todo</h1>
{{ include('todo/_form.html.twig') }}
<a href="{{ path('app_todo_index') }}">back to list</a>
{% endblock %}