mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
feat(people): Add proper breadcrumb to people templates
This commit is contained in:
@@ -1,10 +1,12 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>
|
<nav aria-label="breadcrumb">
|
||||||
<a href="#">People</a> /
|
<ol class="breadcrumb">
|
||||||
{{ object }}
|
<li class="breadcrumb-item"><a href="#">People</a></li>
|
||||||
</h1>
|
<li class="breadcrumb-item active" aria-current="page">{{ object }}</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>
|
<nav aria-label="breadcrumb">
|
||||||
<a href="#">Relationships</a> /
|
<ol class="breadcrumb">
|
||||||
{{ object }}
|
<li class="breadcrumb-item"><a href="#">People</a></li>
|
||||||
</h1>
|
<li class="breadcrumb-item">{{ relationship.source }}</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">{{ relationship.target }}</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user