Skip to content

Commit e303889

Browse files
Skyiesacjacobtylerwalls
authored andcommitted
Fixed #36256 -- Removed unnecessary titles from admin UI elements.
Thanks Eliana Rosselli and the Accessibility Team for the recommendation.
1 parent 11f9fae commit e303889

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

django/contrib/admin/templates/admin/actions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{% if cl.result_count != cl.result_list|length %}
1414
<span class="all hidden">{{ selection_note_all }}</span>
1515
<span class="question hidden">
16-
<a role="button" href="#" title="{% translate "Click here to select the objects across all pages" %}">{% blocktranslate with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktranslate %}</a>
16+
<a role="button" href="#">{% blocktranslate with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktranslate %}</a>
1717
</span>
1818
<span class="clear hidden"><a role="button" href="#">{% translate "Clear selection" %}</a></span>
1919
{% endif %}

django/contrib/admin/templates/admin/app_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="app-{{ app.app_label }} module{% if app.app_url in request.path|urlencode %} current-app{% endif %}">
66
<table>
77
<caption>
8-
<a href="{{ app.app_url }}" class="section" title="{% blocktranslate with name=app.name %}Models in the {{ name }} application{% endblocktranslate %}">{{ app.name }}</a>
8+
<a href="{{ app.app_url }}" class="section">{{ app.name }}</a>
99
</caption>
1010
<thead class="visually-hidden">
1111
<tr>

js_tests/tests.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@
9191
<div class="app-auth module current-app">
9292
<table>
9393
<caption>
94-
<a href="/admin/auth/" class="section"
95-
title="Models in the Authentication and Authorization application">
94+
<a href="/admin/auth/" class="section">
9695
Authentication and Authorization
9796
</a>
9897
</caption>

0 commit comments

Comments
 (0)