{% if draft %}
{% blocktrans %}
The article is a draft. By clicking "Publish", you will make it visible to anybody.
{% endblocktrans %}
{% else %}
{% blocktrans %}
The article is published. If you click "Draft", it will not be visible anymore.
Only staff members will be able to see it.
{% endblocktrans %}
{% endif %}
{{ block.super }}
{% endblock %}
{% block form_ok %}{% if draft %}{% trans "Publish" %}{% else %}{% trans "Draft" %}{% endif %}{% endblock %}