{% extends "dictionary/base.html" %} {% load filters widget_tweaks i18n %} {% block title %}{% trans "edit" context "titleblock" %}{% endblock %} {% block content %}

{{ entry.topic.title }} #{{ entry.pk }}

{% if entry.is_draft %}

{% trans "preview" %}

{{ entry.content|formatted|linebreaksbr }}

{% endif %} {% if not user.is_novice %} {% endif %}
{% include "dictionary/includes/editor_buttons.html" %}
{% csrf_token %} {% autoescape off %} {# Notice: This string gets escaped in render_field! #} {% blocktrans asvar text_placeholder with title=entry.topic.title %}express your thoughts on {{ title }}..{% endblocktrans %} {% endautoescape %} {% trans "Entry content area" as area_label %} {% render_field form.content|attr:"autofocus" placeholder=text_placeholder id="user_content_edit" class="entry_editor form-control allowsave" rows="20" spellcheck="true" aria-label=area_label %}
{% if entry.is_draft %} {% endif %}
{% endblock %}