forum/templates/branch/show.html.twig
sluppyy e1937c9e82
Some checks are pending
CI / Tests (push) Waiting to run
CI / Docker Lint (push) Waiting to run
init
2025-02-13 13:39:42 +03:00

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 %}