Add some spacing

This commit is contained in:
zandercymatics 2024-04-22 14:41:04 -06:00
parent f8ea204e77
commit a7f0340c52
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 1 additions and 2 deletions

View file

@ -163,7 +163,6 @@ class Domain(TimeStampedModel, DomainHelper):
def get_admin_help_text(cls, state): def get_admin_help_text(cls, state):
"""Returns a help message for a desired state for /admin. If none is found, an empty string is returned""" """Returns a help message for a desired state for /admin. If none is found, an empty string is returned"""
admin_help_texts = { admin_help_texts = {
# For now, unknown has the same message as DNS_NEEDED
cls.UNKNOWN: ( cls.UNKNOWN: (
"The creator of the associated domain request has not logged in to " "The creator of the associated domain request has not logged in to "
"manage the domain since it was approved. " "manage the domain since it was approved. "

View file

@ -67,7 +67,7 @@ This is using a custom implementation fieldset.html (see admin/fieldset.html)
{% block after_help_text %} {% block after_help_text %}
{% if field.field.name == "creator" %} {% if field.field.name == "creator" %}
<div class="flex-container"> <div class="flex-container tablet:margin-top-1">
<label aria-label="Creator contact details"></label> <label aria-label="Creator contact details"></label>
{% include "django/admin/includes/contact_detail_list.html" with user=original.creator no_title_top_padding=field.is_readonly %} {% include "django/admin/includes/contact_detail_list.html" with user=original.creator no_title_top_padding=field.is_readonly %}
</div> </div>