Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bookwyrm/templates/book/edit/edit_book_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h2 class="title is-4">
{% trans "Subjects:" %}
</label>
{% for subject in book.subjects %}
<label class="label is-sr-only" for="id_add_subject={% if not forloop.first %}-{{forloop.counter}}{% endif %}">
<label class="label is-sr-only" for="id_add_subject{% if not forloop.first %}-{{forloop.counter}}{% endif %}">
{% trans "Add subject" %}
</label>
<div class="field has-addons" id="subject_field_wrapper_{{ forloop.counter }}">
Expand Down
2 changes: 1 addition & 1 deletion bookwyrm/templates/lists/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
{% csrf_token %}
<div class="field has-addons mb-0">
<div class="control">
<label for="input-list-position" class="button is-transparent is-small">{% trans "List position" %}</label>
<label for="input_list_position_{{ item.id }}" class="button is-transparent is-small">{% trans "List position" %}</label>
</div>
<div class="control">
<input id="input_list_position_{{ item.id }}" class="input is-small" type="number" min="1" name="position" value="{{ item.order }}">
Expand Down
2 changes: 1 addition & 1 deletion bookwyrm/templates/preferences/alias_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2 class="title is-4">{% trans "Add another account as an alias" %}</h2>
<form name="alias-user" action="{% url 'prefs-alias' %}" method="post">
{% csrf_token %}
<div class="field">
<label class="label" for="id_target">{% trans "Enter the username for the account you want to add as an alias e.g. <em>user@example.com </em>:" %}</label>
<label class="label" for="id_username">{% trans "Enter the username for the account you want to add as an alias e.g. <em>user@example.com </em>:" %}</label>
<input class="input {% if form.username.errors %}is-danger{% endif %}" type="text" name="username" id="id_username" required aria-describedby="desc_username">
{% include 'snippets/form_errors.html' with errors_list=form.username.errors id="desc_username" %}
</div>
Expand Down
2 changes: 1 addition & 1 deletion bookwyrm/templates/preferences/edit_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ <h2 class="title is-4">{% trans "Display" %}</h2>
</div>
</div>
<div class="field">
<label class="label" for="id_them">{% trans "Theme:" %}</label>
<label class="label" for="id_theme">{% trans "Theme:" %}</label>
<div class="select">
{{ form.theme }}
</div>
Expand Down
4 changes: 2 additions & 2 deletions bookwyrm/templates/settings/connectors/connector.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{% csrf_token %}
<div class="field has-addons mb-0">
<div class="control">
<label for="input-priority" class="button is-transparent is-small">{% trans "Priority" %}</label>
<label for="input_priority_{{ connector.id }}" class="button is-transparent is-small">{% trans "Priority" %}</label>
</div>
<div class="control">
<input id="input_priority_{{ connector.id }}" class="input is-small" type="number" min="1" name="priority" value="{{connector.priority}}">
Expand Down Expand Up @@ -63,4 +63,4 @@ <h3 class="menu-label">{% trans 'Deactivation reason:' %}</h3>
{% endif %}
</div>
</div>
</li>
</li>
Loading