mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-07 15:50:58 +00:00
16 lines
759 B
HTML
16 lines
759 B
HTML
{% load i18n %}
|
|
{% spaceless %}
|
|
<div class="cms-toolbar-item cms-toolbar-item-buttons cms-toolbar-item-switch-save-edit">
|
|
{% if cms_toolbar.edit_mode_active %}
|
|
<a class="cms-btn cms-btn-switch-save"
|
|
href="{% firstof cms_toolbar.get_object_public_url cms_toolbar.request_path %}?preview&{{ cms_toolbar.edit_mode_url_off }}">
|
|
<span>{% trans "View published" %}</span>
|
|
</a>
|
|
{% else %}
|
|
<a class="cms-btn cms-btn-action cms-btn-switch-edit"
|
|
href="{% firstof cms_toolbar.get_object_draft_url cms_toolbar.request_path %}?{{ cms_toolbar.edit_mode_url_on }}">
|
|
{% trans "Edit" %}
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endspaceless %}
|