This commit is contained in:
Rachid Mrad 2024-04-08 15:27:32 -04:00
parent d145389d95
commit a257e843af
No known key found for this signature in database
2 changed files with 12 additions and 1 deletions

View file

@ -435,3 +435,14 @@ address.dja-address-contact-list {
color: var(--link-fg);
}
}
.dja-status-list {
border-top: solid 1px var(--border-color);
margin-left: 0 !important;
padding-left: 0 !important;
padding-top: 15px;
li {
line-height: 1.15;
font-family: "Source Sans Pro Web", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif !important;
}
}

View file

@ -5,7 +5,7 @@
{% with rejected_requests_count=user.get_rejected_requests_count %}
{% with ineligible_requests_count=user.get_ineligible_requests_count %}
{% if approved_domains_count|add:active_requests_count|add:rejected_requests_count|add:ineligible_requests_count > 0 %}
<ul>
<ul class="dja-status-list">
{% if approved_domains_count > 0 %}
{# Approved domains #}
<li>Approved domains: {{ approved_domains_count }}</li>