doab-check/doab_check/templates/providers.html

24 lines
520 B
HTML

<html>
<head>
<title>DOAB Hostnames</title>
{% include "basestyle.html" %}
</head>
<body>
{% include "header.html" %}
<main class="section oapen-topic oapen-main">
<div class="container">
<div class="content">
<h2>
DOAB Link Checking by Server Hostname
</h2>
<p>(number of links checked in parentheses)
<ul>
{% for provider in provider_list %}
<li><a href="{% url 'provider' provider.provider %}">{{provider.provider}}</a> ({{provider.provider__count}})</li>
{% endfor %}
</ul>
</div>
</div>
</main>
</body>
</html>