{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %}{{ block.super }} {{ form.media }} {% endblock %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}

{% block title %}{% translate "Publish with time limits" %}{% endblock %}

{% now "T" as time_zone %}{% now "DATETIME_FORMAT" as current_time %} {% blocktranslate %}

You can publish with optional dates and times in the future when the content will become visible and/or ceases to be visible to visitors of the site.

Once published the contents or times cannot be changed anymore.

{% endblocktranslate %} {% if errors %}

{% blocktranslate count counter=errors|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}

{% endif %} {% csrf_token %}
{{ form.non_field_errors }}
{{ form.visibility_start.errors }} {{ form.visibility_start }}
{{ form.visibility_end.errors }} {{ form.visibility_end }}

{% blocktranslate with time_zone=time_zone current_time=current_time %} All times are {{ time_zone }} server times. Current server time is {{ current_time }}{% endblocktranslate %}

{% endblock %}