12 lines
250 B
Twig
12 lines
250 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New Message{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Create new Message</h1>
|
|
|
|
{{ include('message/_form.html.twig') }}
|
|
|
|
<a href="{{ path('app_message_index') }}">back to list</a>
|
|
{% endblock %}
|