mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 05:02:57 +01:00
Fix typo in attribute (#12246)
This commit is contained in:
parent
a59a2d0585
commit
b0b33514dd
@ -10,6 +10,7 @@ Changelog
|
||||
* Purge frontend cache when modifying redirects (Jake Howard)
|
||||
* Fix: Prevent page type business rules from blocking reordering of pages (Andy Babic, Sage Abdullah)
|
||||
* Fix: Improve layout of object permissions table (Sage Abdullah)
|
||||
* Fix: Fix typo in aria-label attribute of page explorer navigation link (Sébastien Corbin)
|
||||
* Docs: Upgrade Sphinx to 7.3 (Matt Westcott)
|
||||
* Docs: Document how to customise date/time format settings (Vince Salvino)
|
||||
* Maintenance: Removed support for Python 3.8 (Matt Westcott)
|
||||
|
@ -25,6 +25,7 @@ This release adds formal support for Django 5.1.
|
||||
|
||||
* Prevent page type business rules from blocking reordering of pages (Andy Babic, Sage Abdullah)
|
||||
* Improve layout of object permissions table (Sage Abdullah)
|
||||
* Fix typo in aria-label attribute of page explorer navigation link (Sébastien Corbin)
|
||||
|
||||
### Documentation
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% load i18n wagtailadmin_tags %}
|
||||
<td class="{% if value.can_descend %}children{% endif %} {% if column.classname %}{{ column.classname }}{% endif %}">
|
||||
{% if value.can_descend %}
|
||||
<a href="{% url 'wagtailadmin_choose_page_child' value.id %}{% querystring p=None %}" class="navigate-pages" title="{% blocktrans trimmed with title=value.get_admin_display_title %}Explore subpages of '{{ title }}'{% endblocktrans %}" arial-label="{% trans 'Explore' %}">{% icon name="arrow-right" classname="default" %}</a>
|
||||
<a href="{% url 'wagtailadmin_choose_page_child' value.id %}{% querystring p=None %}" class="navigate-pages" title="{% blocktrans trimmed with title=value.get_admin_display_title %}Explore subpages of '{{ title }}'{% endblocktrans %}" aria-label="{% trans 'Explore' %}">{% icon name="arrow-right" classname="default" %}</a>
|
||||
{% endif %}
|
||||
</td>
|
||||
|
Loading…
Reference in New Issue
Block a user