diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py index b920fc9c..1ab6e0ee 100644 --- a/bookwyrm/forms.py +++ b/bookwyrm/forms.py @@ -134,7 +134,7 @@ class EditionForm(CustomForm): 'updated_date', 'edition_rank', - 'authors',# TODO + 'authors', 'parent_work', 'shelves', diff --git a/bookwyrm/templates/edit_book.html b/bookwyrm/templates/edit_book.html index a4d62efd..1ebcc6b9 100644 --- a/bookwyrm/templates/edit_book.html +++ b/bookwyrm/templates/edit_book.html @@ -13,11 +13,13 @@ {% trans "Add Book" %} {% endif %} + {% if book %}
{% trans "Added:" %} {{ book.created_date | naturaltime }}
{% trans "Updated:" %} {{ book.updated_date | naturaltime }}
{% trans "Last edited by:" %} {{ book.last_edited_by.display_name }}