{% extends "dictionary/base.html" %} {% load widget_tweaks filters i18n %} {% block title %}{{ entry.topic.title }}#{{ entry.pk }} {{ updating|yesno:_(" - updating comment, - commenting") }}{% endblock %} {% block content %}

{{ entry.topic.title }} #{{ entry.pk }} {{ updating|yesno:_(" - updating comment, - commenting") }}

{% blocktrans trimmed with name=entry.author.username url=entry.author.get_absolute_url %} user with nickname {{ name }} wrote: {% endblocktrans %}

{{ entry.content|formatted|linebreaksbr }}
{% if not user.is_novice %} {% endif %}
{% include "dictionary/includes/editor_buttons.html" %}
{% csrf_token %} {% blocktrans asvar text_placeholder with title=entry.topic.title %}comment on this entry written in {{ title }}...{% endblocktrans %} {% trans "Comment content area" as area_label %} {% render_field form.content|attr:"autofocus" placeholder=text_placeholder id="user_content_edit" class="entry_editor form-control" rows="10" spellcheck="true" aria-label=area_label %}
{% if updating %} {% endif %}
{% endblock %}