forked from feincms/feincms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent_editor.html
More file actions
31 lines (29 loc) · 1.19 KB
/
Copy pathcontent_editor.html
File metadata and controls
31 lines (29 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% load i18n %}
{% load feincms_tags %}
<div id="main_wrapper">
{% for region in original.template.regions %}
<div class="navi_tab" id="{{ region.key }}_tab">{{ region.title }}</div>
{% endfor %}
<div id="main">
{% for region in original.template.regions %}
<div id="{{ region.key }}_body" class="panel">
<div class="empty-machine-msg">
{% trans "Region empty" %}
</div>
<div class="empty-machine-msg" style="margin-left:20px; margin-top:20px;">
{% if region.inherited %}
{% trans "Content from the parent site is automatically inherited. To override this behaviour, add some content." %}
{% endif %}
</div>
<div class="order-machine"></div>
<div class="machine-control">
<div class="control-unit">
<span>{% trans "Add new item" %}:</span> <br/>
{% show_content_type_selection_widget region %}
<input type="button" class="order-machine-add-button button" value="Go" />
</div>
</div>
</div>
{% endfor %}
</div>
</div>