{% extends "base.html" %} {% block content %} {% if action == "delete" %}

THIS CANNOT BE UNDONE:

Are you sure you want to delete the revision {{ doc.revision }} of the document {{ doc.name }}?

{% elif action == "delete-all" %}

THIS CANNOT BE UNDONE:

Are you sure you want to delete all revisions of the document {{ doc.name }}?

{% elif action == "toggle-vis" %}

Are you sure you want to make the document {{ doc.name }} {% if doc.public %}private{% else %}public{% endif %}?

{% elif action == "publish" %}

Are you sure you want to publish the revision {{ doc.revision }} of the document {{ doc.name }} on your blog?

{% elif action == "unpublish" %}

Are you sure you want to unpublish the blog {{ doc.published_title }}, published at ?

{% else %}

Error: Unknown action!

{% endif %} {% if action in ["delete", "delete-all", "toggle-vis", "publish", "unpublish"] %}
{% if action == "publish" %}
{% endif %}
Cancel
{% endif %} {% endblock content %}