djLint/tests/django_cms/cms/toolbar/items/live_draft.html
2021-07-29 13:41:34 -05:00

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&amp;{{ 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 %}