1
0
Fork 0

SMall fixes for update form and ol connector

This commit is contained in:
Mouse Reeve 2020-04-04 13:46:10 -07:00
parent 630c94a34a
commit f0609e6ff3
3 changed files with 9 additions and 8 deletions

View file

@ -426,6 +426,8 @@ def book_page(request, book_identifier, tab='friends'):
def edit_book_page(request, book_identifier):
''' info about a book '''
book = books_manager.get_or_create_book(book_identifier)
if not book.description:
book.description = book.parent_work.description
data = {
'book': book,
'form': forms.EditionForm(instance=book)