2023-03-30 18:35:15 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>DOAB Publishers</title>
|
2023-08-21 18:51:42 +00:00
|
|
|
{% include "basestyle.html" %}
|
2023-03-30 18:35:15 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-08-21 18:51:42 +00:00
|
|
|
{% include "header.html" %}
|
|
|
|
<main class="section oapen-topic oapen-main">
|
|
|
|
<div class="container">
|
|
|
|
<div class="content">
|
2023-03-30 18:35:15 +00:00
|
|
|
<h2>
|
|
|
|
DOAB Linkchecking by Publisher
|
|
|
|
</h2>
|
2023-09-06 19:25:36 +00:00
|
|
|
<p>(number of books in parentheses)
|
2023-03-30 18:35:15 +00:00
|
|
|
<ul>
|
|
|
|
{% for publisher in publisher_list %}
|
2023-05-09 20:23:56 +00:00
|
|
|
<li><a href="{% url 'publisher' publisher.publisher_name|default:'*** no publisher name ***' %}">
|
2023-09-06 19:25:36 +00:00
|
|
|
{{ publisher.publisher_name|default:'*** no publisher name ***' }}
|
|
|
|
</a> ({{ publisher.publisher_name__count }})</li>
|
2023-03-30 18:35:15 +00:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2023-08-21 18:51:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
2023-03-30 18:35:15 +00:00
|
|
|
</body>
|
|
|
|
</html>
|