mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-25 14:51:28 +00:00
Add markup and stying for task page
This commit is contained in:
21
view/partial/results-table.html
Normal file
21
view/partial/results-table.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<table id="graph-data" class="table graph-table" summary="Accessibility results from pa11y for this page">
|
||||
<caption>pa11y results for this url</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th class="text-center">Errors</th>
|
||||
<th class="text-center">Warnings</th>
|
||||
<th class="text-center">Notifications</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#results}}
|
||||
<tr data-role="url-stats">
|
||||
<td data-role="category">{{date-format date format="DD MMM YYYY"}}</td>
|
||||
<td class="text-center" data-label="error">{{count.error}}</td>
|
||||
<td class="text-center" data-label="warning">{{count.warning}}</td>
|
||||
<td class="text-center" data-label="notification">{{count.notice}}</td>
|
||||
</tr>
|
||||
{{/results}}
|
||||
</tbody>
|
||||
</table>
|
Reference in New Issue
Block a user