{% extends 'layout.html' %} {% load i18n %} {% load humanize %} {% block title %}{% trans "Edit Author:" %} {{ author.name }}{% endblock %} {% block content %}

Edit "{{ author.name }}"

{% trans "Added:" %} {{ author.created_date | naturaltime }}

{% trans "Updated:" %} {{ author.updated_date | naturaltime }}

{% if author.last_edited_by %}

{% trans "Last edited by:" %} {{ author.last_edited_by.display_name }}

{% endif %}
{% if form.non_field_errors %}

{{ form.non_field_errors }}

{% endif %}
{% csrf_token %}

{% trans "Metadata" %}

{{ form.name }} {% include 'snippets/form_errors.html' with errors_list=form.name.errors id="desc_name" %}
{{ form.aliases }} {% trans "Separate multiple values with commas." %} {% include 'snippets/form_errors.html' with errors_list=form.aliases.errors id="desc_aliases" %}
{{ form.bio }} {% include 'snippets/form_errors.html' with errors_list=form.bio.errors id="desc_bio" %}

{{ form.wikipedia_link }}

{{ form.wikidata }}

{% include 'snippets/form_errors.html' with errors_list=form.wikipedia_link.errors id="desc_wikipedia_link" %}

{{ form.website }}

{% include 'snippets/form_errors.html' with errors_list=form.website.errors id="desc_website" %}
{% include 'snippets/form_errors.html' with errors_list=form.born.errors id="desc_born" %}
{% include 'snippets/form_errors.html' with errors_list=form.died.errors id="desc_died" %}

{% trans "Author Identifiers" %}

{{ form.openlibrary_key }} {% include 'snippets/form_errors.html' with errors_list=form.openlibrary_key.errors id="desc_openlibrary_key" %}
{{ form.inventaire_id }} {% include 'snippets/form_errors.html' with errors_list=form.inventaire_id.errors id="desc_inventaire_id" %}
{{ form.librarything_key }} {% include 'snippets/form_errors.html' with errors_list=form.librarything_key.errors id="desc_librarything_key" %}
{{ form.goodreads_key }} {% include 'snippets/form_errors.html' with errors_list=form.goodreads_key.errors id="desc_goodreads_key" %}
{{ form.isfdb }} {% include 'snippets/form_errors.html' with errors_list=form.isfdb.errors id="desc_isfdb" %}
{{ form.isni }} {% include 'snippets/form_errors.html' with errors_list=form.isni.errors id="desc_isni" %}
{% trans "Cancel" %}
{% endblock %}