1 {% extends "documents/base.html" %}
4 {% load pagination_tags %}
7 {% block titleextra %}{% trans "Catalogue" %}{% endblock %}
12 <div class="card-header">
13 <h1>{% trans "Catalogue" %}</h1>
15 <div class="card-body">
20 <a href="{{ author.get_absolute_url }}">
25 {{ author.pd_year|default_if_none:"-" }}
28 {{ author.wikidata_link }}
31 {{ author.get_priority_display }}
34 {% for book in author.book_set.all %}
38 <a href="{{ book.get_absolute_url }}">
43 {{ book.pd_year|default_if_none:"-" }}
46 {{ book.wikidata_link }}
49 {{ book.get_priorty_display }}
52 {% for b in book.document_books %}
53 <a href="{{ b.get_absolute_url }}">
60 {% for book in author.translated_book_set.all %}
64 <a href="{{ book.get_absolute_url }}">
66 </a> ({% trans "trans." %})
69 {{ book.pd_year|default_if_none:"-" }}
72 {{ book.wikidata_link }}
75 {{ book.get_priorty_display }}
78 {% for b in book.document_books %}
79 <a href="{{ b.get_absolute_url }}">
89 {% endblock content %}