Add breadcrumbs in domain management

This commit is contained in:
Neil Martinsen-Burrell 2023-03-21 14:50:46 -05:00
parent 9defc9d161
commit 1330110bab
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
3 changed files with 22 additions and 0 deletions

View file

@ -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

View file

@ -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 #}

View file

@ -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 %}