{% extends "base.html" %} {% load i18n %} {% block title %}{% if object %}{% blocktrans with object.title as news_title %}Edit '{{ news_title }}'{% endblocktrans %}{% else %}{% trans "New News Article" %}{% endif %}{% endblock %} {% block body-pageid %}news-edit{% endblock %} {% block content %}
{% csrf_token %} {% if object %}

{% trans "Delete News Article" %}

{% endif %}
{% trans "This will delete the article and any translations associated with the article!" %}

{{ object.title }}


{{ object.excerpt|safe }}


{{ object.content|safe }}


{% endblock %}