{% extends "dictionary/base.html" %} {% load i18n widget_tweaks filters humanize %} {% block title %}{% translate "create new entry" %}{% endblock %} {% block content %} {% translate "express your thoughts..." as text_placeholder %} {% translate "Entry content area" as area_label %}

{% translate "create new entry" %}

{% if recent_drafts %} {% url "topic_list" slug="drafts" as drafts_url %}
{% blocktranslate trimmed with drafts_attr='data-lf-slug="drafts"' %} you have recent entries that are awaiting to be published: {% endblocktranslate %}
{% endif %}
{% if not user.is_novice %} {% endif %}
{% csrf_token %}
{% include "dictionary/includes/editor_buttons.html" %} {% render_field form.content placeholder=text_placeholder id="user_content_edit" class="entry_editor form-control allowsave" rows="10" spellcheck="true" aria-label=area_label %}
{% endblock %}