Merge pull request #1137 from bookwyrm-social/title-header

Uses correct filter for book title
This commit is contained in:
Mouse Reeve 2021-05-24 07:21:12 -07:00 committed by GitHub
commit ea0f7ff925
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{% extends 'layout.html' %}
{% load i18n %}{% load bookwyrm_tags %}{% load humanize %}{% load utilities %}
{% block title %}{{ book|title }}{% endblock %}
{% block title %}{{ book|book_title }}{% endblock %}
{% block content %}
{% with user_authenticated=request.user.is_authenticated can_edit_book=perms.bookwyrm.edit_book %}