doab-check/doab_check/templates/providers.html

24 lines
520 B
HTML
Raw Permalink Normal View History

2023-03-02 22:40:34 +00:00
<html>
<head>
2023-03-30 18:33:42 +00:00
<title>DOAB Hostnames</title>
{% include "basestyle.html" %}
2023-03-02 22:40:34 +00:00
</head>
<body>
{% include "header.html" %}
<main class="section oapen-topic oapen-main">
<div class="container">
<div class="content">
2023-03-30 18:33:42 +00:00
<h2>
2023-05-02 19:52:03 +00:00
DOAB Link Checking by Server Hostname
2023-03-30 18:33:42 +00:00
</h2>
2023-09-06 21:26:35 +00:00
<p>(number of links checked in parentheses)
2023-03-02 22:40:34 +00:00
<ul>
{% for provider in provider_list %}
2023-09-06 21:26:35 +00:00
<li><a href="{% url 'provider' provider.provider %}">{{provider.provider}}</a> ({{provider.provider__count}})</li>
2023-03-02 22:40:34 +00:00
{% endfor %}
</ul>
</div>
</div>
</main>
2023-03-02 22:40:34 +00:00
</body>
</html>