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

@ -4,7 +4,7 @@
<h2>
{% include 'snippets/avatar.html' with user=user %}
Your thoughts on
<a href="/book/{{ book.openlibrary_key }}">{{ book.title }}</a>
<a href="/book/{{ book.local_key }}">{{ book.title }}</a>
by {% include 'snippets/authors.html' with book=book %}
</h2>
@ -24,16 +24,14 @@
{% include 'snippets/book_cover.html' with book=book %}
<form class="tab-option-{{ book.id }} review-form" name="review" action="/review/" method="post" id="tab-review-{{ book.id }}">
{% csrf_token %}
{# todo: this shouldn't use the openlibrary key #}
<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>
<form class="hidden tab-option-{{ book.id }} review-form" name="comment" action="/comment/" method="post" id="tab-comment-{{ book.id }}">
{% csrf_token %}
{# todo: this shouldn't use the openlibrary key #}
<input type="hidden" name="book" value="{{ book.openlibrary_key }}"></input>
<input type="hidden" name="book" value="{{ book.local_key }}"></input>
{{ comment_form.as_p }}
<button type="submit">post comment</button>
</form>