Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
66e1831
Improve accessibility with ARIA attrs in base.html
ACK1D Dec 23, 2023
ea42f15
Improve accessibility with ARIA atts in redirect
ACK1D Dec 23, 2023
f28f6b0
Improve a11y with ARIA atts in panel_button
ACK1D Dec 23, 2023
aa9d9c1
Improve a11y with ARIA atts in panel_content
ACK1D Dec 23, 2023
e906e52
Improve a11y with ARIA atts in cache.html
ACK1D Dec 23, 2023
30b5518
Improve a11y with ARIA atts in headers.html
ACK1D Dec 23, 2023
d33aac8
Improve a11y with ARIA atts in history_tr.html
ACK1D Dec 23, 2023
bf81fa6
Improve a11y with ARIA atts in history.html
ACK1D Dec 23, 2023
826c862
Improve a11y with ARIA atts in profiling.html
ACK1D Dec 23, 2023
474468c
Improve a11y with ARIA atts in request_variables
ACK1D Dec 23, 2023
56d836b
Improve a11y with ARIA atts in request.html
ACK1D Dec 23, 2023
63d747f
Improve a11y with ARIA atts in settings.html
ACK1D Dec 23, 2023
8177c79
Improve a11y with ARIA atts in signals.html
ACK1D Dec 23, 2023
3bf5360
Improve a11y with ARIA atts in sql_explain.html
ACK1D Dec 23, 2023
59e5870
Improve a11y with ARIA atts in sql_profile.html
ACK1D Dec 23, 2023
03144db
Improve a11y with ARIA atts in sql_select.html
ACK1D Dec 23, 2023
7494e9a
Improve a11y with ARIA atts in sql.html
ACK1D Dec 23, 2023
f972f09
Improve a11y with ARIA atts in staticfiles.html
ACK1D Dec 23, 2023
0fc8a08
Improve a11y with ARIA atts in template_source
ACK1D Dec 23, 2023
016af88
Improve a11y with ARIA atts in templates.html
ACK1D Dec 23, 2023
135ba6e
Improve a11y with ARIA atts in timer.html
ACK1D Dec 23, 2023
767d6b0
Improve a11y with ARIA atts in versions.html
ACK1D Dec 23, 2023
640dbb3
fix tests
ACK1D Dec 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve a11y with ARIA atts in history.html
  • Loading branch information
ACK1D committed Dec 23, 2023
commit bf81fa68cb2f74e43fcb0a97a9f6642a6eebb749
22 changes: 11 additions & 11 deletions debug_toolbar/templates/debug_toolbar/panels/history.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{% load i18n %}{% load static %}
{% load i18n static %}
<form method="get" action="{% url 'djdt:history_refresh' %}">
{{ refresh_form }}
<button class="refreshHistory">Refresh</button>
<button class="refreshHistory">{% trans "Refresh" %}</button>
</form>
<table class="djdt-max-height-100">
<table class="djdt-max-height-100" role="grid" aria-labelledby="history-table-heading">
<thead>
<tr>
<th>{% trans "Time" %}</th>
<th>{% trans "Method" %}</th>
<th>{% trans "Path" %}</th>
<th>{% trans "Request Variables" %}</th>
<th>{% trans "Status" %}</th>
<th>{% trans "Action" %}</th>
<tr role="row">
<th role="columnheader">{% trans "Time" %}</th>
<th role="columnheader">{% trans "Method" %}</th>
<th role="columnheader">{% trans "Path" %}</th>
<th role="columnheader">{% trans "Request Variables" %}</th>
<th role="columnheader">{% trans "Status" %}</th>
<th role="columnheader">{% trans "Action" %}</th>
</tr>
</thead>
<tbody id="djdtHistoryRequests">
<tbody id="djdtHistoryRequests" role="rowgroup">
{% for id, store_context in stores.items %}
{% include "debug_toolbar/panels/history_tr.html" %}
{% endfor %}
Expand Down