{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% blocktrans %}New news post{% endblocktrans %}{% endblock %} {% block bodyclass %}menu-news{% endblock %} {% block content %} {% trans "New" as new_str %} {% trans "news post" as newspost_str %} {% include "wagtailadmin/shared/header.html" with title=new_str subtitle=newspost_str icon="news" %}
{% csrf_token %} {{ edit_handler.render_form_content }}
{% endblock %} {% block extra_css %} {% include "wagtailadmin/pages/_editor_css.html" %} {% endblock %} {% block extra_js %} {% include "wagtailadmin/pages/_editor_js.html" %} {% endblock %}