{% extends "admin/base_site.html" %} {% load i18n static %} {% load url from future %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block title %}{% trans "Import zone file to PowerDNS Manager" %}{% endblock %} {% block breadcrumbs %} {% 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 'Import Zone File' %}

{% trans "This web form facilitates importing zone files to PowerDNS Manager by pasting the zone file data in the textarea below." %}

{% trans "The origin field is optional. It should be filled in case this information is not available in your zone file either by the $ORIGIN directive or by using an FQDN in the name field of each record." %}

{% trans "By checking ``overwrite``, if a zone with the same origin exists in your database will be deleted and replaced by the imported one. Proceed with caution." %}

{{ form.origin.errors }} {{ form.origin }}
{{ form.zonetext.errors }} {{ form.zonetext }}
{{ form.overwrite.errors }} {{ form.overwrite }}
{% endblock %}