{% translate 'Change Account IP v6' %}
{% translate 'Change Hosting Account IP v6 Address' %}
{% translate 'This action will replace all ipv6 ips of the selected hosting account. Dns also updated with a new IP.' %}
{% translate 'If the Subnet is not /128, then a random ipv6 will be assigned from the selected range of IPs' %}
{% if form.errors %}
{% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %}
{% for field in form %}
{% for error in field.errors %}
{{ error|escape }}
{% endfor %}
{% endfor %}
{% endif %}
{% if messages %}
{% for message in messages %}
{% if message.tags == "success" %}
{{ message }}
{% else %}
{{ message }}
{% endif %}
{% endfor %}
{% endif %}