{% extends "admin/base_site.html" %} {% block extrastyle %}{{ block.super }} {% endblock extrastyle %} {% block extrahead %}{{ block.super }} {% endblock extrahead %} {% block content %}
{% csrf_token %} {% include "i18n/includes/buttons_save_abort_translate.html" %} {% if not sites|length_is:"1" %}

This new content page will be create on site: '{{ current_site }}'.

{% endif %} {% if has_errors %}
{% trans 'Form errors:' %} {% for form in all_forms %} {% include "admin/pylucid/includes/form_errorlist.html" %} {% endfor %}
{% endif %}
Blog content
{% for field in source_fields %} {% include "admin/pylucid/includes/form_field.html" %} {% endfor %}
{% for field in dest_fields %} {% include "admin/pylucid/includes/form_field.html" %} {% endfor %}
{% include "i18n/includes/buttons_save_abort_translate.html" %}
{% for field in line_fields %} {% if field.is_hidden %} {{ field }} {% else %}
{% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {{ field }}
{{ field.language.description }} - {{ field.help_text }}
{% endif %} {% endfor %}
{% include "i18n/includes/buttons_save_abort_translate.html" %}
{% endblock %}