{% extends 'templates/document.html' %}
{% import 'components/Document/Head.html' as Head %}
{% import 'components/Sidebar/Sidebar.html' as Sidebar %}
{% import 'components/PageHeader/PageHeader.html' as PageHeader %}
{% import 'content/Droppable/UniqueDropzone/UniqueDropzone.html' as UniqueDropzone %}
{% set ViewAttr = {
id: 'UniqueDropzone',
parent: 'Droppable',
child: 'Unique dropzone',
subheading: 'Dropzones are intended to hold only one Droppable child. This example restricts each Droppable item to a specific Dropzone identifier.'
} %}
{% block PageId %}{{ ViewAttr.id }}{% endblock %}
{% block head %}
{{ Head.render(ViewAttr) }}
{% endblock %}
{% block sidebar %}
{{ Sidebar.render(ViewAttr, DataPages) }}
{% endblock %}
{% block main %}
{{ PageHeader.render(ViewAttr) }}
{{ UniqueDropzone.render(ViewAttr.id) }}
{% endblock %}