bookwyrm/bookwyrm/templates/author/author.html

118 lines
4.3 KiB
HTML
Raw Normal View History

2020-02-11 06:32:03 +00:00
{% extends 'layout.html' %}
{% load i18n %}
2021-05-11 22:14:42 +00:00
{% load markdown %}
2021-05-11 00:24:10 +00:00
{% load humanize %}
{% block title %}{{ author.name }}{% endblock %}
2020-02-11 06:32:03 +00:00
{% block content %}
2020-09-30 23:20:50 +00:00
<div class="block">
2021-02-23 21:04:24 +00:00
<div class="columns is-mobile">
<div class="column">
<h1 class="title">{{ author.name }}</h1>
</div>
{% if request.user.is_authenticated and perms.bookwyrm.edit_book %}
<div class="column is-narrow">
2020-12-31 01:36:35 +00:00
<a href="{{ author.local_path }}/edit">
2021-05-18 17:45:51 +00:00
<span class="icon icon-pencil" title="{% trans 'Edit Author' %}" aria-hidden="True"></span>
<span class="is-hidden-mobile">{% trans "Edit Author" %}</span>
</a>
</div>
{% endif %}
</div>
</div>
2021-05-24 10:36:48 +00:00
<div class="block columns" itemscope itemtype="https://schema.org/Person">
2021-05-23 19:17:14 +00:00
<meta itemprop="name" content="{{ author.name }}">
{% if author.aliases or author.born or author.died or author.wikipedia_link or author.openlibrary_key or author.inventaire_id %}
2021-05-24 10:51:18 +00:00
<div class="column is-two-fifths">
2021-05-24 15:17:12 +00:00
<div class="box py-2">
2021-05-11 00:24:10 +00:00
<dl>
{% if author.aliases %}
2021-05-24 15:17:12 +00:00
<div class="is-flex is-flex-wrap-wrap my-1">
2021-05-24 10:51:18 +00:00
<dt class="has-text-weight-bold mr-1">{% trans "Aliases:" %}</dt>
2021-05-24 10:36:48 +00:00
{% for alias in author.aliases %}
<dd itemprop="alternateName" content="{{alias}}">
2021-05-24 10:51:18 +00:00
{{alias}}{% if not forloop.last %},&nbsp;{% endif %}
2021-05-24 10:36:48 +00:00
</dd>
{% endfor %}
2021-05-11 00:24:10 +00:00
</div>
{% endif %}
2021-05-24 15:17:12 +00:00
2021-05-11 00:24:10 +00:00
{% if author.born %}
2021-05-24 15:17:12 +00:00
<div class="is-flex my-1">
2021-05-24 10:51:18 +00:00
<dt class="has-text-weight-bold mr-1">{% trans "Born:" %}</dt>
2021-05-23 19:17:14 +00:00
<dd itemprop="birthDate">{{ author.born|naturalday }}</dd>
2021-05-11 00:24:10 +00:00
</div>
{% endif %}
2021-05-24 15:17:12 +00:00
2021-05-23 18:25:42 +00:00
{% if author.died %}
2021-05-24 15:17:12 +00:00
<div class="is-flex my-1">
2021-05-24 10:51:18 +00:00
<dt class="has-text-weight-bold mr-1">{% trans "Died:" %}</dt>
2021-05-23 19:17:14 +00:00
<dd itemprop="deathDate">{{ author.died|naturalday }}</dd>
2021-05-11 00:24:10 +00:00
</div>
{% endif %}
</dl>
2021-05-11 00:24:10 +00:00
{% if author.wikipedia_link %}
2021-05-24 15:17:12 +00:00
<p class="my-1">
2021-05-24 10:36:48 +00:00
<a itemprop="sameAs" href="{{ author.wikipedia_link }}" rel=”noopener” target="_blank">
2021-05-23 19:17:14 +00:00
{% trans "Wikipedia" %}
</a>
</p>
2021-05-11 00:24:10 +00:00
{% endif %}
2021-05-24 10:51:18 +00:00
2021-05-11 00:24:10 +00:00
{% if author.openlibrary_key %}
2021-05-24 15:17:12 +00:00
<p class="my-1">
2021-05-24 10:36:48 +00:00
<a itemprop="sameAs" href="https://openlibrary.org/authors/{{ author.openlibrary_key }}" target="_blank" rel="noopener">
2021-05-23 19:17:14 +00:00
{% trans "View on OpenLibrary" %}
</a>
2021-05-11 00:24:10 +00:00
</p>
{% endif %}
2021-05-24 10:36:48 +00:00
2021-05-11 00:24:10 +00:00
{% if author.inventaire_id %}
2021-05-24 15:17:12 +00:00
<p class="my-1">
2021-05-24 10:36:48 +00:00
<a itemprop="sameAs" href="https://inventaire.io/entity/{{ author.inventaire_id }}" target="_blank" rel="noopener">
2021-05-23 19:17:14 +00:00
{% trans "View on Inventaire" %}
</a>
2021-05-11 00:24:10 +00:00
</p>
{% endif %}
2021-05-24 10:51:41 +00:00
{% if author.librarything_key %}
2021-05-24 15:17:12 +00:00
<p class="my-1">
2021-05-24 10:51:41 +00:00
<a itemprop="sameAs" href="https://www.librarything.com/author/{{ author.librarything_key }}" target="_blank" rel="noopener">
{% trans "View on LibraryThing" %}
</a>
</p>
{% endif %}
{% if author.goodreads_key %}
2021-05-24 15:17:12 +00:00
<p class="my-1">
2021-05-24 10:51:41 +00:00
<a itemprop="sameAs" href="https://www.goodreads.com/author/show/{{ author.goodreads_key }}" target="_blank" rel="noopener">
{% trans "View on Goodreads" %}
</a>
</p>
{% endif %}
2021-05-11 00:24:10 +00:00
</div>
</div>
{% endif %}
2021-05-11 00:24:10 +00:00
<div class="column">
{% if author.bio %}
2021-05-11 22:14:42 +00:00
{{ author.bio|to_markdown|safe }}
2021-05-11 00:24:10 +00:00
{% endif %}
</div>
</div>
2020-09-30 23:20:50 +00:00
<div class="block">
<h3 class="title is-4">{% blocktrans with name=author.name %}Books by {{ name }}{% endblocktrans %}</h3>
<div class="columns is-multiline is-mobile">
{% for book in books %}
<div class="column is-one-fifth">
{% include 'discover/small-book.html' with book=book %}
</div>
{% endfor %}
</div>
2020-02-11 06:32:03 +00:00
</div>
{% endblock %}