mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-27 20:11:14 +00:00
Merge pull request #1612 from bookwyrm-social/lithuanian-space
Preserve spaces between links
This commit is contained in:
commit
58f63280fd
2 changed files with 5 additions and 5 deletions
|
@ -46,8 +46,10 @@
|
||||||
{% include 'snippets/book_cover.html' with book=guess cover_class='is-h-s' size='small' %}
|
{% include 'snippets/book_cover.html' with book=guess cover_class='is-h-s' size='small' %}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="column">
|
<div class="column content">
|
||||||
{% include 'snippets/book_titleby.html' with book=guess %}
|
<p>
|
||||||
|
{% include 'snippets/book_titleby.html' with book=guess %}
|
||||||
|
</p>
|
||||||
<div class="content is-flex">
|
<div class="content is-flex">
|
||||||
<form class="pr-2" name="approve-{{ item.id }}" method="POST" action="{% url 'import-approve' job.id item.id %}">
|
<form class="pr-2" name="approve-{{ item.id }}" method="POST" action="{% url 'import-approve' job.id item.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
|
@ -5,11 +5,9 @@
|
||||||
{% if book.authors.exists %}
|
{% if book.authors.exists %}
|
||||||
{% blocktrans trimmed with path=book.local_path title=book|book_title %}
|
{% blocktrans trimmed with path=book.local_path title=book|book_title %}
|
||||||
<a href="{{ path }}">{{ title }}</a> by
|
<a href="{{ path }}">{{ title }}</a> by
|
||||||
{% endblocktrans %}
|
{% endblocktrans %} {% include 'snippets/authors.html' with book=book limit=3 %}
|
||||||
{% include 'snippets/authors.html' with book=book limit=3 %}
|
|
||||||
|
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ book.local_path }}">{{ book|book_title }}</a>
|
<a href="{{ book.local_path }}">{{ book|book_title }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% endspaceless %}
|
{% endspaceless %}
|
||||||
|
|
Loading…
Reference in a new issue