{% extends "layouts/app.twig" %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block title %}{{ __('messages.title') }}: {{ other_user.nameWithPronoun() }}{% endblock %} {% block content %}
{% for msg in messages %} {% if msg.user_id == other_user.id %}
{{ msg.text | nl2br }}
{{ msg.created_at }}
{% if msg.read == false %} New alerts {% endif %}
{% else %}
{{ msg.text | nl2br }}
{{ csrf() }} {{ msg.created_at }} {{ f.submit(m.icon('trash'), {'btn_type': 'primary', 'size': 'sm'}) }}
{% endif %} {% endfor %}
{{ csrf() }}
{{ f.submit(m.icon('send-fill')) }}
{% endblock %}