update form

This commit is contained in:
bastien ollier
2024-06-07 15:54:49 +02:00
parent 541ec566d1
commit b7a750604a
20 changed files with 582 additions and 57 deletions

View File

@@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Post{% endblock %}
{% block body %}
<h1>Create new Post</h1>
{{ include('post/_form.html.twig') }}
<a href="{{ path('app_post_index') }}">back to list</a>
{% endblock %}