diff options
| author | Skyiesac <jainsachi1202@gmail.com> | 2025-11-20 22:43:21 +0530 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-11-21 17:15:39 -0500 |
| commit | e3038897992d1c47f70ffb84ec1109b8d6a68bb9 (patch) | |
| tree | 6acf95f2dffce3a3f41e378e0ebcfd79cbd7b7cd /django/contrib/admin | |
| parent | 11f9fae0b79651291e89446c367d0d1223abbd20 (diff) | |
Fixed #36256 -- Removed unnecessary titles from admin UI elements.
Thanks Eliana Rosselli and the Accessibility Team for the recommendation.
Diffstat (limited to 'django/contrib/admin')
| -rw-r--r-- | django/contrib/admin/templates/admin/actions.html | 2 | ||||
| -rw-r--r-- | django/contrib/admin/templates/admin/app_list.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/actions.html b/django/contrib/admin/templates/admin/actions.html index f0419d9837..db7345dc60 100644 --- a/django/contrib/admin/templates/admin/actions.html +++ b/django/contrib/admin/templates/admin/actions.html @@ -13,7 +13,7 @@ {% if cl.result_count != cl.result_list|length %} <span class="all hidden">{{ selection_note_all }}</span> <span class="question hidden"> - <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> + <a role="button" href="#">{% blocktranslate with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktranslate %}</a> </span> <span class="clear hidden"><a role="button" href="#">{% translate "Clear selection" %}</a></span> {% endif %} diff --git a/django/contrib/admin/templates/admin/app_list.html b/django/contrib/admin/templates/admin/app_list.html index 60d874b2b6..28148c456e 100644 --- a/django/contrib/admin/templates/admin/app_list.html +++ b/django/contrib/admin/templates/admin/app_list.html @@ -5,7 +5,7 @@ <div class="app-{{ app.app_label }} module{% if app.app_url in request.path|urlencode %} current-app{% endif %}"> <table> <caption> - <a href="{{ app.app_url }}" class="section" title="{% blocktranslate with name=app.name %}Models in the {{ name }} application{% endblocktranslate %}">{{ app.name }}</a> + <a href="{{ app.app_url }}" class="section">{{ app.name }}</a> </caption> <thead class="visually-hidden"> <tr> |
