{% extends "admin/base_site.html" %} {% block extrahead %}{{ block.super }} {% endblock extrahead %} {% block content %}
{% 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 %} {% if source_preview %} {% include "page_admin/includes/edit_content_page_buttons.html" %}
{% trans 'Markup preview' %}
{{ source_preview }}
{{ dest_preview }}
{% endif %}
PluginContent - {% trans 'Language:' %} {{ default_lang_entry.description }} {% include "page_admin/includes/edit_content_page_buttons.html" %} {% 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 %}
{% trans 'Language' %}: {{ default_lang_entry.description }}

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 "page_admin/includes/edit_content_page_buttons.html" %}
{% endblock %}