mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-20 01:36:00 +02:00
Merge pull request #484 from cisagov/ik/add-domain-name
Domain name and back link
This commit is contained in:
commit
e8b7bfb9c4
3 changed files with 18 additions and 13 deletions
|
@ -325,6 +325,9 @@ section.dashboard {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.break-word {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
padding-top: units(3);
|
padding-top: units(3);
|
||||||
|
|
|
@ -5,6 +5,13 @@
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="grid-container">
|
<div class="grid-container">
|
||||||
|
<div class="grid-row">
|
||||||
|
<p class="font-body-sm margin-top-0 margin-bottom-2
|
||||||
|
text-primary-darker text-semibold"
|
||||||
|
>
|
||||||
|
{{ domain.name }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
<div class="grid-row grid-gap">
|
<div class="grid-row grid-gap">
|
||||||
<div class="grid-col-3">
|
<div class="grid-col-3">
|
||||||
{% include 'domain_sidebar.html' %}
|
{% include 'domain_sidebar.html' %}
|
||||||
|
@ -22,16 +29,18 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<a href="{% url 'home' %}" class="breadcrumb__back">
|
||||||
{% block domain_content %}
|
|
||||||
<p><a href="{% url 'home' %}">
|
|
||||||
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
||||||
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
|
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
|
||||||
</svg>
|
</svg>
|
||||||
Back to manage your domains
|
<p class="margin-left-05 margin-top-0 margin-bottom-0">
|
||||||
</a></p>
|
Back to manage your domains
|
||||||
|
</p>
|
||||||
|
</a>
|
||||||
|
|
||||||
<h1>Domain {{ domain.name }}</h1>
|
{% block domain_content %}
|
||||||
|
|
||||||
|
<h1 class="break-word">{{ domain.name }}</h1>
|
||||||
|
|
||||||
{% endblock %} {# domain_content #}
|
{% endblock %} {# domain_content #}
|
||||||
|
|
||||||
|
|
|
@ -4,13 +4,6 @@
|
||||||
{% block title %}User management{% endblock %}
|
{% block title %}User management{% endblock %}
|
||||||
|
|
||||||
{% block domain_content %}
|
{% block domain_content %}
|
||||||
<p><a href="{% url 'home' %}">
|
|
||||||
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
|
||||||
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
|
|
||||||
</svg>
|
|
||||||
Back to manage your domains
|
|
||||||
</a></p>
|
|
||||||
|
|
||||||
<h1>User management</h1>
|
<h1>User management</h1>
|
||||||
|
|
||||||
{% if domain.permissions %}
|
{% if domain.permissions %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue