forked from mirrors/bookwyrm
eea8b4e750
- Have an explicit contextual class on `cover-container`. - Use more flexible, consistent and searchable variable name for passing classes to covers. - Consistently use `'…'` with django variables. - Give the option to not hide covers to screen readers. - consitently give a title to the cover container if `alt_text` exists. - [lists] Remove `.content` which is applying too extensive default styles.
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 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' with cover_class='is-small' %}
|
|
</a>
|
|
|
|
<div class="column is-9-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 %}
|