2023-03-30 18:35:15 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>DOAB Publishers</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2>
|
|
|
|
DOAB Linkchecking by Publisher
|
|
|
|
</h2>
|
|
|
|
<ul>
|
|
|
|
{% for publisher in publisher_list %}
|
2023-04-27 21:04:45 +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>
|
|
|
|
</body>
|
|
|
|
</html>
|