weblate/html/checks.html

28 lines
616 B
HTML
Vendored

{% extends "base.html" %}
{% load i18n %}
{% load weblate %}
{% load url from future %}
{% block breadcums %}
<li><a href="{% url 'trans.views.show_checks' %}">{% trans "checks" %}</a></li>
{% endblock %}
{% block content %}
<table class="sort simple">
<thead>
<tr>
<th>{% trans "Check" %}</th>
<th>{% trans "Failures" %}</th>
</tr>
<tbody>
{% for check in checks %}
<tr>
<th><abbr title="{% check_description check.check %}">{% check_name check.check %}</abbr></th>
<td><a href="{% url 'trans.views.show_check' name=check.check %}">{{ check.count }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}