{% extends "colorbox/popup_form_base.html" %} {% load i18n %} {% block title %}{{title}}{% endblock %} {% block extra_head %} {{block.super}} {% endblock %} {% block form_url %}{{article.get_publish_url }}{% endblock %} {% block form_fields %}
{% 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 %}