forked from mirrors/bookwyrm
8ddc292ee6
- Work on feeds. - Add `.is-cover` to modify the behaviours of columns. - Only apply logic for dimensions on the cover container; too many contextual side effects otherwise. - Add classes to dimension and align, including auto margins for flex. - Rename classes in templates accordingly.
72 lines
2.9 KiB
HTML
72 lines
2.9 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 mr-auto">
|
|
<div class="columns is-mobile is-gapless is-vcentered">
|
|
<a
|
|
class="column is-cover"
|
|
href="{{ book.local_path }}"
|
|
aria-hidden="true"
|
|
>
|
|
{% include 'snippets/book_cover.html' with cover_class='is-w-xs-mobile is-w-s is-h-xs-mobile is-h-s' %}
|
|
</a>
|
|
|
|
<div class="column ml-3">
|
|
{% include 'snippets/book_titleby.html' %}
|
|
</div>
|
|
</div>
|
|
</dt>
|
|
|
|
<dd class="column is-4-tablet mx-3-tablet my-3-mobile">
|
|
{% 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 %}
|