{% extends "dictionary/base.html" %} {% load humanize filters i18n %} {% block title %}{% blocktrans with username=recipient.username context "titleblock" %}@{{ username }} - conversation{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans trimmed with url=recipient.get_absolute_url username=recipient.username %} conversation with @{{ username }} {% endblocktrans %}

{% with messages=conversation.collection %} {% if messages|length > 10 %} {% trans "only the last 10 messages are shown. click here to show all messages." %} {% endif %} {% if messages %} {% else %}
{% trans "no messages left in this conversation 🤷" %}
{% endif %} {% endwith %} {% if not can_send_message %}

{% trans "you are not allowed to send messages to this user." %}

{% else %} {% trans "write message" as label %} {% if not user.is_novice %} {% endif %}
{% include "dictionary/includes/editor_buttons.html" %} {% load widget_tweaks %}
{% csrf_token %} {% render_field form.body|attr:"autofocus" id="user_content_edit" class="mr-2 form-control" rows="5" spellcheck="true" placeholder=label aria-label=label %}
{% endif %} {% endblock %}