{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% trans "Block Clipboard" %}{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block extra_js %} {{ block.super }} {% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title="Block Clipboard" icon="clipboard" %}

{% trans "This is where you can find blocks you've copied from pages. You can paste them into other pages from here." %}

{% if clipboard_items %}
{% for item in clipboard_items %}

{% if item.label and "Block from page" not in item.label %} {{ item.label }} {% else %} {{ item.block_type_display }} block copied from {% if item.source_page %} {% if item.source_page_title %}{{ item.source_page_title }}{% else %}Page{% endif %} #{{ item.source_page }} {% else %} unknown page {% endif %} {% endif %}

{% trans "Block type:" %} {{ item.block_type }} {% trans "Copied:" %} {{ item.timestamp|date:"M j, Y H:i" }}
{{ item.preview }}
{% endfor %}
{% else %}

{% trans "You haven't copied any blocks to your clipboard yet." %}

{% trans "To copy a block, edit a page and click the 'Copy to Clipboard' button in the block menu." %}

{% endif %}
{% endblock %}