Fixed #36255 -- Renamed the admin action button for improved accessibility.
@ -5,7 +5,7 @@
|
|||||||
{% for field in action_form %}{% if field.label %}<label>{{ field.label }} {{ field }}</label>{% else %}{{ field }}{% endif %}{% endfor %}
|
{% for field in action_form %}{% if field.label %}<label>{{ field.label }} {{ field }}</label>{% else %}{{ field }}{% endif %}{% endfor %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block actions-submit %}
|
{% block actions-submit %}
|
||||||
<button type="submit" class="button" title="{% translate "Run the selected action" %}" name="index" value="{{ action_index|default:0 }}">{% translate "Go" %}</button>
|
<button type="submit" class="button" name="index" value="{{ action_index|default:0 }}">{% translate "Run" %}</button>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block actions-counter %}
|
{% block actions-counter %}
|
||||||
{% if actions_selection_counter %}
|
{% if actions_selection_counter %}
|
||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 110 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 75 KiB |
@ -2,5 +2,5 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
|
||||||
{% block actions-submit %}
|
{% 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 %}
|
{% endblock %}
|
||||||
|