1
0
Fork 0

Use local key instead of openlibrary key in urls

but uh maybe the local key shouldn't look so gnarly?
This commit is contained in:
Mouse Reeve 2020-03-27 15:42:44 -07:00
parent 5d2fbb8500
commit 0f98610629
13 changed files with 24 additions and 22 deletions

View file

@ -5,7 +5,7 @@
<h2><q>{{ book.title }}</q> by
{% include 'snippets/authors.html' with book=book %}</h2>
<div>
{% if book.parent_work %}<p>Edition of <a href="/book/{{ book.parent_work.openlibrary_key }}">{{ book.parent_work.title }}</a></p>{% endif %}
{% if book.parent_work %}<p>Edition of <a href="/book/{{ book.parent_work.local_key }}">{{ book.parent_work.title }}</a></p>{% endif %}
<div class="book-preview">
{% include 'snippets/book_cover.html' with book=book size=large %}
@ -32,7 +32,7 @@
<h2>Leave a review</h2>
<form class="review-form" name="review" action="/review/" method="post">
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.openlibrary_key }}"></input>
<input type="hidden" name="book" value="{{ book.local_key }}"></input>
{{ review_form.as_p }}
<button type="submit">Post review</button>
</form>