FestinHegre/templates/tables/new.html.twig

12 lines
246 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Tables{% endblock %}
{% block body %}
<h1>Create new Tables</h1>
{{ include('tables/_form.html.twig') }}
<a href="{{ path('app_tables_index') }}">back to list</a>
{% endblock %}