{% extends "admin/base_site.html" %} {% block extrahead %}{{ block.super }} {% endblock extrahead %} {% block content %}
{% csrf_token %} {% 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 %} {% include "i18n/includes/buttons_save_abort_translate.html" %}
PluginContent {% with source_pagecontent_form.content as field %}

{{ source_pagecontent_form.language.description }} - {{ field.help_text }}

{{ field }} {% with source_pagecontent_form.markup as field %} {% include "admin/pylucid/includes/form_field.html" %} {% endwith %}

{{ dest_pagecontent_form.language.description }} - {{ field.help_text }}

{{ dest_pagecontent_form.content }} {% with dest_pagecontent_form.markup as field %} {% include "admin/pylucid/includes/form_field.html" %} {% endwith %}
{% endwith %}
{% include "i18n/includes/buttons_save_abort_translate.html" %}

PageMeta

{% for field in pagemeta_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 %}