Show consistent book status regardless of edition

This commit is contained in:
Mouse Reeve
2020-12-16 09:15:26 -08:00
parent af823cf645
commit 729e50de63
3 changed files with 15 additions and 14 deletions

View File

@ -675,7 +675,7 @@ def editions_page(request, book_id):
data = {
'title': 'Editions of %s' % work.title,
'editions': work.edition_set.all(),
'editions': work.editions.all(),
'work': work,
}
return TemplateResponse(request, 'editions.html', data)