doab-check/doab_check/templates/problems.html

26 lines
503 B
HTML
Raw Normal View History

2023-04-27 21:06:05 +00:00
<html>
<head>
<title>DOAB Problem Links</title>
</head>
<body>
<h2>
DOAB links with apparent problems
</h2>
<ul>
{% for link in problem_list %}
<li>
<p><a href="{{link.url}}">{{link.url}}</a> ({{link.items.first.publisher_name}})
<table>
{% for check in link.recent_checks %}
<tr>
<td>{{ check.created }}</td>
<td {% if check.return_code != 200 %} style="color:red"{% endif %}>{{ check.return_code }}</td>
<td>{{check.content_type}}</td>
{% endfor %}
</table>
</li>
{% endfor %}
</ul>
</body>
</html>