{% extends "admin/base_site.html" %} {% load i18n l10n static %} {% load url from future %} {% load admin_urls %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %}{% trans 'Set TTL' %}{% endblock %} {% block content %}
{% csrf_token %}
{% if form.errors %}

{% blocktrans count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}

{% trans 'Set TTL' %}

{% trans "Enter the new TTL in seconds." %}

{{ form.new_ttl.errors }} {{ form.new_ttl }}
{{ form.reset_zone_minimum.errors }} {{ form.reset_zone_minimum }}
{% endblock %}