@@ -424,7 +424,7 @@ class NotificationTable(NetBoxTable):
orderable=False,
attrs={
'td': {'class': 'w-1'},
- 'th': {'class': 'w-1'},
+ 'th': {'class': 'w-1', 'aria-label': _('Type')},
},
verbose_name=''
)
@@ -248,6 +248,9 @@ class ActionsColumn(tables.Column):
direct button link and icon (default: True)
"""
attrs = {
+ 'th': {
+ 'aria-label': _('Actions'),
+ },
'td': {
'class': 'text-end text-nowrap noprint p-1'
}
@@ -36,7 +36,7 @@
<th scope="col">{% trans "Parameter" %}</th>
<th scope="col">{% trans "Current Value" %}</th>
<th scope="col">{% trans "New Value" %}</th>
- <th scope="col"></th>
+ <th scope="col" aria-label="{% trans "Changed" %}"></th>
</tr>
</thead>
<tbody>
@@ -18,7 +18,7 @@
<th>{% trans "Name" %}</th>
<th>{% trans "Label" %}</th>
<th>{% trans "Role" %}</th>
- <th></th>
+ <th aria-label="{% trans "Actions" %}"></th>
@@ -8,7 +8,7 @@
@@ -6,7 +6,7 @@
<table class="table table-hover attr-table">
<thead>
<tr class="border-bottom">
+ <th aria-label="{% trans "Attribute" %}"></th>
<th>{% trans "Local" %}</th>
{% if peer %}
<th>{% trans "Peer" %}</th>
@@ -66,7 +66,7 @@
<th>{% trans "Serial" %}</th>
<th>{% trans "Position" %}</th>
<th>{% trans "Priority" %}</th>
@@ -33,7 +33,7 @@
<th>{% trans "Description" %}</th>
<th>{% trans "Last Run" %}</th>
<th>{% trans "Status" %}</th>
@@ -24,7 +24,7 @@
<th>{% trans "Protocol" %}</th>
<th>{% trans "Virtual IPs" %}</th>
@@ -10,7 +10,7 @@