Commit 6bd2a75a authored by Michal Čihař's avatar Michal Čihař

List failing source checks on review page

parent 42a5dfc2
......@@ -36,7 +36,16 @@
{% for source in sources.object_list %}
<tr>
<td class="translatetext">{{ source.source|fmttranslation }}</td>
<td>{{ source.get_source_checks }}</td>
<td>
{% for check in source.active_source_checks %}
<span class="check" id="check-{{ check.id }}">
{% if perms.trans.ignore_check %}
<a href="{% url 'js-ignore-check' check_id=check.id %}" class="ignorecheck" title="{% blocktrans with check.get_check_display as check %}Ignore: {{ check }}{% endblocktrans %}"></a>
{% endif %}
<a href="{{ check.get_doc_url }}" title="{{ check.get_description }}">{{ check.get_check_display }}</a>
</span>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment