diff options
author | Adam Tauber <asciimoo@gmail.com> | 2020-06-25 15:51:42 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2020-06-25 19:50:26 +0200 |
commit | fce2d496514f4ddfa725e9796c5b70e37a4dec74 (patch) | |
tree | d1f5fdf7d635bac8bb38b4afe6d374563e62c1a4 | |
parent | 5ca52869123f40ad3cf991e78ad9baeaff52c4c2 (diff) | |
download | searxng-fce2d496514f4ddfa725e9796c5b70e37a4dec74.tar.gz searxng-fce2d496514f4ddfa725e9796c5b70e37a4dec74.zip |
[fix] use scope attribute to describe properties in the engine preferences table
-rw-r--r-- | searx/templates/oscar/preferences.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index cd4070d05..3466df006 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -173,23 +173,23 @@ <table class="table table-hover table-condensed table-striped"> <tr> {% if not rtl %} - <th>{{ _("Allow") }}</th> - <th>{{ _("Engine name") }}</th> - <th>{{ _("Shortcut") }}</th> - <th>{{ _("Selected language") }}</th> - <th>{{ _("SafeSearch") }}</th> - <th>{{ _("Time range") }}</th> - <th>{{ _("Avg. time") }}</th> - <th>{{ _("Max time") }}</th> + <th scope="col">{{ _("Allow") }}</th> + <th scope="col">{{ _("Engine name") }}</th> + <th scope="col">{{ _("Shortcut") }}</th> + <th scope="col">{{ _("Selected language") }}</th> + <th scope="col">{{ _("SafeSearch") }}</th> + <th scope="col">{{ _("Time range") }}</th> + <th scope="col">{{ _("Avg. time") }}</th> + <th scope="col">{{ _("Max time") }}</th> {% else %} - <th class="text-right">{{ _("Max time") }}</th> - <th class="text-right">{{ _("Avg. time") }}</th> - <th class="text-right">{{ _("Time range") }}</th> - <th class="text-right">{{ _("SafeSearch") }}</th> - <th class="text-right">{{ _("Selected language") }}</th> - <th class="text-right">{{ _("Shortcut") }}</th> - <th class="text-right">{{ _("Engine name") }}</th> - <th class="text-right">{{ _("Allow") }}</th> + <th scope="col" class="text-right">{{ _("Max time") }}</th> + <th scope="col" class="text-right">{{ _("Avg. time") }}</th> + <th scope="col" class="text-right">{{ _("Time range") }}</th> + <th scope="col" class="text-right">{{ _("SafeSearch") }}</th> + <th scope="col" class="text-right">{{ _("Selected language") }}</th> + <th scope="col" class="text-right">{{ _("Shortcut") }}</th> + <th scope="col" class="text-right">{{ _("Engine name") }}</th> + <th scope="col" class="text-right">{{ _("Allow") }}</th> {% endif %} </tr> {% for search_engine in engines_by_category[categ] %} @@ -199,7 +199,7 @@ <td class="onoff-checkbox"> {{ checkbox_toggle('engine_' + search_engine.name|replace(' ', '_') + '__' + categ|replace(' ', '_'), (search_engine.name, categ) in disabled_engines) }} </td> - <th>{{ search_engine.name }}</th> + <th scope="row">{{ search_engine.name }}</th> <td class="name">{{ shortcuts[search_engine.name] }}</td> <td>{{ support_toggle(stats[search_engine.name].supports_selected_language) }}</td> <td>{{ support_toggle(search_engine.safesearch==True) }}</td> @@ -213,7 +213,7 @@ <td>{{ support_toggle(search_engine.safesearch==True) }}</td> <td>{{ support_toggle(stats[search_engine.name].supports_selected_language) }}</td> <td>{{ shortcuts[search_engine.name] }}</td> - <th>{{ search_engine.name }}</th> + <th scope="row">{{ search_engine.name }}</th> <td class="onoff-checkbox"> {{ checkbox_toggle('engine_' + search_engine.name|replace(' ', '_') + '__' + categ|replace(' ', '_'), (search_engine.name, categ) in disabled_engines) }} </td> |