bugfix unrelated to 1.6

pull/1/head
eric 2016-04-09 13:26:05 -04:00
parent 3949947277
commit ef62d59dd0
1 changed files with 1 additions and 1 deletions

View File

@ -2834,7 +2834,7 @@ def lockss(request, work_id):
ebooks = work.ebooks().filter(edition__unglued=True)
except:
ebooks = None
authors = list(models.Author.objects.filter(editions__work=work).all())
authors = work.authors.all()
return render(request, "lockss.html", {'work':work, 'ebooks':ebooks, 'authors':authors})