19 lines
415 B
Twig
19 lines
415 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}{{ branch.name }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{{ branch.name }}</h1>
|
|
|
|
<div class="list">
|
|
{% for message in branch.messages %}
|
|
<span class="block">
|
|
{{ message.text }}
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<h2>{% trans %}words.message{% endtrans %}</h2>
|
|
{{ form(create_message_form) }}
|
|
{% endblock %}
|