Skip to content

Commit

Permalink
Merge pull request #2832 from seabelis/2648/edit-form-improve-title-f…
Browse files Browse the repository at this point in the history
…ields-text

2648/edit form improve title fields text
  • Loading branch information
hornc authored Jan 12, 2020
2 parents c8a08a3 + 8167f5d commit 7413363
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openlibrary/templates/books/edit/edition.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
<div class="formElement">
<div class="label">
<label for="edition-title">Title</label>
<span class="tip">$_("There are occasionally title variants amongst editions.")</span>
<span class="tip">$_("Enter the title of this specific edition.")</span>
</div>
<div class="input">
<input type="text" name="edition--title" id="edition-title" value="$book.title"/>
Expand Down Expand Up @@ -239,11 +239,11 @@
<div class="formElement">
<div class="label">
<label for="edition-title_other">$_("Is it known by any other titles?")</label>
<span class="tip">$_("Perhaps in another language?")</span>
<span class="tip">$_("Use this field if the title is different on the cover or spine. If the edition is a collection or anthology, you may also add the individual titles of each work here.")</span>
</div>
<div class="input">
<input type="text" name="edition--other_titles--0" id="edition-title_other" value="$(book.other_titles and book.other_titles[0])"/>
<div class="tip">$_("For example:") <i>Der Zauberberg</i> $_("is an alternate title for") <i>The Magic Mountain</i>.</div>
<div class="tip">$_("For example:") <i>Eaters of the Dead</i> $_("is an alternate title for") <i><a href='/books/OL24923038M'>The 13th Warrior</i></a>.</div>
</div>
$if book.other_titles and len(book.other_titles) > 1:
$for i, t in enumerate(book.other_titles):
Expand Down

0 comments on commit 7413363

Please sign in to comment.