forked from mirrors/bookwyrm
953dff90bb
- `optimizeQuality` > `smooth` (CSS language evolution) - Use `auto` instead of a fixed width. - Add exceptions for heights and apply them to some previously modified templates. - Remove `is-large` exception. - Widen the content column on list curation.
72 lines
2.8 KiB
HTML
72 lines
2.8 KiB
HTML
{% extends 'lists/list_layout.html' %}
|
|
{% load i18n %}
|
|
{% block panel %}
|
|
|
|
<section class="block">
|
|
<div class="columns is-mobile is-multiline is-align-items-baseline">
|
|
<div class="column is-narrow">
|
|
<h2 class="title is-4">{% trans "Pending Books" %}</h2>
|
|
</div>
|
|
|
|
<p class="column is-narrow"><a href="{% url 'list' list.id %}">{% trans "Go to list" %}</a></p>
|
|
</div>
|
|
|
|
{% if not pending.exists %}
|
|
<p>{% trans "You're all set!" %}</p>
|
|
{% else %}
|
|
|
|
<dl>
|
|
{% for item in pending %}
|
|
{% with book=item.book %}
|
|
<div
|
|
class="
|
|
columns is-gapless
|
|
is-vcentered is-justify-content-space-between
|
|
mb-6
|
|
"
|
|
>
|
|
<dt class="column is-5-tablet is-6-desktop">
|
|
<div class="columns is-mobile is-gapless is-vcentered">
|
|
<a
|
|
class="column"
|
|
href="{{ book.local_path }}"
|
|
aria-hidden="true"
|
|
>
|
|
{% include 'snippets/book_cover.html' %}
|
|
</a>
|
|
|
|
<div class="column is-10-mobile is-10-tablet ml-3">
|
|
{% include 'snippets/book_titleby.html' %}
|
|
</div>
|
|
</div>
|
|
</dt>
|
|
|
|
<dd class="column is-3-tablet is-3-desktop my-3">
|
|
{% trans "Suggested by" %}
|
|
|
|
<a href="{{ item.user.local_path }}">
|
|
{{ item.user.display_name }}
|
|
</a>
|
|
</dd>
|
|
|
|
<dd class="column is-narrow field has-addons">
|
|
<form class="control" method="POST" action="{% url 'list-curate' list.id %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="item" value="{{ item.id }}">
|
|
<input type="hidden" name="approved" value="true">
|
|
<button class="button">{% trans "Approve" %}</button>
|
|
</form>
|
|
<form class="control" method="POST" action="{% url 'list-curate' list.id %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="item" value="{{ item.id }}">
|
|
<input type="hidden" name="approved" value="false">
|
|
<button class="button is-danger is-light">{% trans "Discard" %}</button>
|
|
</form>
|
|
</dd>
|
|
</div>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</dl>
|
|
{% endif %}
|
|
</section>
|
|
{% endblock %}
|