diff --git a/templates/admin/accounts/hostingprovider/hosting_provider_fieldset.html b/templates/admin/accounts/hostingprovider/hosting_provider_fieldset.html index 3a174ae3..b28a860c 100644 --- a/templates/admin/accounts/hostingprovider/hosting_provider_fieldset.html +++ b/templates/admin/accounts/hostingprovider/hosting_provider_fieldset.html @@ -1,15 +1,18 @@ {% load admin_helpers %} -
{% if fieldset.name %}

{{ fieldset.name }}

{% endif %} - {% if fieldset.description %} -
{{ fieldset.description|safe }}
- {% endif %} + {% if fieldset.description %}
{{ fieldset.description|safe }}
{% endif %} {% for line in fieldset %}
{% if line.fields|length_is:'1' %}{{ line.errors }}{% endif %} {% for field in line %} - +
{% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %} {% if field.is_checkbox %} {{ field.field }}{{ field.label_tag }} @@ -18,33 +21,17 @@ {% if field.is_readonly %}
{{ field.contents }}
{% else %} - {{ field.field }} - {% if field.field.name == 'website' %} - - - - - {% if request.user|has_group:"admin" %} {% link_to_ripe_stat field.field.value %} - {% endif %} - + {% endif %} {% endif %} - {% endif %} {% endif %} - {% if field.field.help_text %} -
{{ field.field.help_text|safe }}
- {% endif %} + {% if field.field.help_text %}
{{ field.field.help_text|safe }}
{% endif %}
{% endfor %}
{% endfor %} -