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>
|
|
|
|
<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-03-31 13:27:10 +00:00
|
|
|
{% if publisher.publisher_name %}{{publisher.publisher_name}}
|
|
|
|
{% else %}*** no publisher name ***
|
|
|
|
{% endif %}
|
|
|
|
</a> ({{publisher.item_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>
|