Merge branch 'import-field-names' of github.com:bookwyrm-social/bookwyrm into import-field-names

This commit is contained in:
Mouse Reeve
2021-11-14 07:06:48 -08:00
6 changed files with 43 additions and 1 deletions

View File

@ -134,8 +134,15 @@
{{ item.normalized_data.shelf }}
</td>
<td>
{% if item.rating %}
<p>{% include 'snippets/stars.html' with rating=item.rating %}</p>
{% endif %}
{% if item.review %}
<p>{{ item.review|truncatechars:100 }}</p>
{% endif %}
{% if item.linked_review %}
<a href="{{ item.linked_review.remote_id }}" target="_blank">{% trans "View imported review" %}</a>
{% endif %}
</td>
{% block import_cols %}
<td>

View File

@ -61,7 +61,7 @@
{% csrf_token %}
<button type="submit" class="button is-danger is-light is-outlined">
<span class="icon icon-x m-0-mobile" aria-hidden="true"></span>
<span class="is-sr-only-mobile">{% trans "Delete" %}</span>
<span class="is-sr-only-mobile">{% trans "Reject" %}</span>
</button>
</form>
</div>