mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-04 00:42:16 +02:00
Add breadcrumbs in domain management
This commit is contained in:
parent
9defc9d161
commit
1330110bab
3 changed files with 22 additions and 0 deletions
|
@ -4,6 +4,13 @@
|
|||
{% block title %}Add another user{% endblock %}
|
||||
|
||||
{% block domain_content %}
|
||||
<p><a href="{% url "domain-users" pk=domain.id %}">
|
||||
<svg class="usa-icon" aria-hidden="true" focusable="false" role="img">
|
||||
<use xlink:href="{% static 'img/sprite.svg' %}#arrow_back"></use>
|
||||
</svg>
|
||||
Back to user management
|
||||
</a>
|
||||
</p>
|
||||
<h1>Add another user</h1>
|
||||
|
||||
<p>You can add another user to help manage your domain. They will need to sign
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{% extends "base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block title %}Domain {{ domain.name }}{% endblock %}
|
||||
|
||||
|
@ -23,6 +24,13 @@
|
|||
{% endif %}
|
||||
|
||||
{% 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>Domain {{ domain.name }}</h1>
|
||||
|
||||
{% endblock %} {# domain_content #}
|
||||
|
|
|
@ -4,6 +4,13 @@
|
|||
{% block title %}User management{% endblock %}
|
||||
|
||||
{% 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>
|
||||
|
||||
{% if domain.permissions %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue