swap out the order of the alerts so that the form error alerts are below the informational one

This commit is contained in:
Rachid Mrad 2023-10-17 17:47:34 -04:00
parent 6ef6044459
commit 1ea318bdbc
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF

View file

@ -4,10 +4,6 @@
{% block title %}DS Data | {{ domain.name }} | {% endblock %}
{% block domain_content %}
{% for form in formset %}
{% include "includes/form_errors.html" with form=form %}
{% endfor %}
{% if domain.dnssecdata is None %}
<div class="usa-alert usa-alert--info usa-alert--slim margin-bottom-3">
<div class="usa-alert__body">
@ -16,6 +12,10 @@
</div>
{% endif %}
{% for form in formset %}
{% include "includes/form_errors.html" with form=form %}
{% endfor %}
<h1>DS Data</h1>
<p>In order to enable DNSSEC, you must first configure it with your DNS hosting service.</p>