mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00

* Update gitignore * Update makefile. Add hbs helper * Collect all selectors for errors/warnings/notices * Add list of techniques that help to solve problems * Remove task-stats block from sidebar * Remove script from Makefile * Update tooltips. Map standards and techniques * Update layout for new components: new tabs, errors panels, lists of selectors, tooltips and popovers * Update styles for new layout and components * Graph buttons and popovers styles * Reformat less code * Include popover. Update IE styles * Problem details. Context popovers * Update graph buttons. Add sorting by number of errors * Update graph buttons params * Fix tooltip names * Swap details and ignore link-buttons * Set ignore link colors
84 lines
3.0 KiB
HTML
84 lines
3.0 KiB
HTML
{{!
|
|
This file is part of Pa11y Dashboard.
|
|
|
|
Pa11y Dashboard is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Pa11y Dashboard is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
|
|
}}
|
|
<div class="col-md-12 clearfix">
|
|
<div class="graph-container graph-spacer ruled clearfix">
|
|
<div class="row">
|
|
<ul class="list-unstyled floated-list series-checkboxes clearfix col-md-5 col-sm-6 col-xs-12 pull-right" data-role="series-checkboxes"></ul>
|
|
</div>
|
|
<div data-role="graph" class="graph"></div>
|
|
<div class="dashedLegend">
|
|
<div class="dashedContainer">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td class="legendColorBox">
|
|
<div class="clearfix legendIcon legendErrors">
|
|
<div></div>
|
|
</div>
|
|
</td>
|
|
<td class="legendLabel">Errors</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="legendColorBox">
|
|
<div class="clearfix legendIcon legendWarnings">
|
|
<div></div><div></div>
|
|
</div>
|
|
</td>
|
|
<td class="legendLabel">Warnings</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="legendColorBox">
|
|
<div class="clearfix legendIcon legendNotices">
|
|
<div></div><div></div><div></div>
|
|
</div>
|
|
</td>
|
|
<td class="legendLabel">Notices</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<button data-role='zoom-reset' class="btn btn-xs btn-primary pull-right btn-reset hidden">Reset Zoom <i class="glyphicon glyphicon-zoom-out"></i></button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-12 hidden">
|
|
<div class="graph-spacer ruled">
|
|
<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">Notices</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#results}}
|
|
<tr data-role="url-stats">
|
|
<td data-value="{{date-timestamp date}}" data-role="date">{{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="notice">{{count.notice}}</td>
|
|
</tr>
|
|
{{/results}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|