1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #36255 -- Renamed the admin action button for improved accessibility.

This commit is contained in:
koffi
2025-04-04 13:53:30 +02:00
committed by Sarah Boyce
parent f7f38f3a0b
commit 019acad112
9 changed files with 2 additions and 2 deletions

View File

@@ -2,5 +2,5 @@
{% load i18n %}
{% block actions-submit %}
<button type="submit" class="button override-actions" title="{% translate "Run the selected action" %}" name="index" value="{{ action_index|default:0 }}">{% translate "Go" %}</button>
<button type="submit" class="button override-actions" name="index" value="{{ action_index|default:0 }}">{% translate "Run" %}</button>
{% endblock %}