mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-23 08:04:46 +00:00
added title tag to ellipsis items in edit page breadcrumb
This commit is contained in:
parent
3261e1a268
commit
207b28f1af
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@
|
|||
{% if not page.get_parent.is_root %}
|
||||
<ul class="breadcrumb single">
|
||||
{% if not page.get_parent.get_parent.is_root %}
|
||||
<li><a href="{% url 'wagtailadmin_explore' page.get_parent.get_parent.id %}">...</a></li>
|
||||
<li><a href="{% url 'wagtailadmin_explore' page.get_parent.get_parent.id %}" title="{{ page.get_parent.get_parent.title }}">...</a></li>
|
||||
{% endif %}
|
||||
<li><a href="{% url 'wagtailadmin_explore' page.get_parent.id %}">{{ page.get_parent.title }}</a></li>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Reference in a new issue