This commit is contained in:
zandercymatics 2024-04-25 09:15:12 -06:00
parent 2223d496c1
commit bc8a5cc0e7
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 188 additions and 170 deletions

View file

@ -619,9 +619,22 @@ address.dja-address-contact-list {
}
div.django-admin__model-description{
p, li {
color: var(--primary);
font-size: medium;
line-height: 1.2em;
}
li {
list-style-type: disc;
}
button {
padding-top: 20px;
}
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

View file

@ -1,3 +1,4 @@
<span class="display-inline-flex">
<div class="django-admin__model-description text-normal">
{% if opts.model_name == 'domainrequest' %}
<p>
@ -170,14 +171,18 @@
Once a verified-by-staff user has been added as a domain manager, they can be removed from this list,
(However, if they are removed as a domain manager for all domains and they attempt to sign in again, they will be identity proofed by Login.gov).
</p>
{% elif opts.model_name == 'websites' %}
{% elif opts.model_name == 'website' %}
<p>
This section lists all the “current websites” and “alternative domains” that users have submitted in domain requests since January 2024.
This table lists all the “current websites” and “alternative domains” that users have submitted in domain requests since January 2024.
</p>
<p>
This does not include any “requested domains” that have appeared within the <a href="{% url 'admin:registrar_domainrequest_changelist' %}">Domain requests</a> table.
Those names are managed in the <a href="{% url 'admin:registrar_draftdomain_changelist' %}">Draft domains<a/> table.
</p>
{% else %}
<p>This table does not have a description yet.</p>
{% endif %}
</div>
<button class="usa-button usa-button--unstyled" type="button">Show more</button>
</span>