added title tag to ellipsis items in edit page breadcrumb

This commit is contained in:
Dave Cranwell 2014-03-28 17:08:23 +00:00
parent 3261e1a268
commit 207b28f1af

View file

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