forked from mirrors/bookwyrm
106 lines
5.1 KiB
HTML
106 lines
5.1 KiB
HTML
{% extends 'layout.html' %}
|
|
{% load bookwyrm_tags %}
|
|
{% block content %}
|
|
|
|
<header class="columns content">
|
|
<div class="column">
|
|
<h1 class="title">{{ list.name }} <span class="subtitle">{% include 'snippets/privacy-icons.html' with item=list %}</span></h1>
|
|
<p class="subtitle help">Created {% if list.curation != 'open' %} and curated{% endif %} by {% include 'snippets/username.html' with user=list.user %}</p>
|
|
{% include 'snippets/trimmed_text.html' with full=list.description %}
|
|
</div>
|
|
{% if request.user == list.user %}
|
|
<div class="column is-narrow">
|
|
{% include 'snippets/toggle/open_button.html' with text="Edit list" icon="pencil" controls_text="create-list" %}
|
|
</div>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<form name="create-list" method="post" action="{% url 'list' list.id %}" class="box hidden" id="create-list">
|
|
<h3 class="title">Edit list</h3>
|
|
{% include 'lists/form.html' %}
|
|
</form>
|
|
|
|
|
|
<div class="columns content">
|
|
<section class="column is-three-quarters">
|
|
{% if not list.books.exists %}
|
|
<p>This list is currently empty</p>
|
|
{% else %}
|
|
<ol>
|
|
{% for item in list.listitem_set.all %}
|
|
<li class="block">
|
|
<div class="card">
|
|
<header class="card-header">
|
|
<a href="{{ book.local_path }}">{% include 'snippets/book_cover.html' with book=item.book size="medium" %}</a>
|
|
<div class="card-header-title is-flex-direction-column is-align-items-self-start">
|
|
<span>{% include 'snippets/book_titleby.html' with book=item.book %}</span>
|
|
{% include 'snippets/stars.html' with rating=item.book|rating:request.user %}
|
|
{% include 'snippets/shelve_button.html' with book=item.book %}
|
|
</div>
|
|
</header>
|
|
{% if item.note %}
|
|
<div class="card-content">
|
|
{% include 'snippets/trimmed_text.html' with full=item.note %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="card-footer has-background-white-bis">
|
|
<div class="card-footer-item">
|
|
<p>Added by {% include 'snippets/username.html' with user=item.added_by %}</p>
|
|
</div>
|
|
{% if list.user == request.user or list.curation == 'open' and item.added_by == request.user %}
|
|
<form name="add-book" method="post" action="{% url 'list-add-book' list.id %}" class="card-footer-item">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
|
<button type="submit" class="button is-small is-danger">Remove</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endif %}
|
|
</section>
|
|
|
|
{% if not list.curation == 'closed' or request.user == list.user %}
|
|
<section class="column is-one-quarter">
|
|
<h2>{% if list.curation == 'open' or request.user == list.user %}Add{% else %}Suggest{% endif %} Books</h2>
|
|
<form name="search" action="{% url 'list' list.id %}" method="GET" class="block">
|
|
<div class="field has-addons">
|
|
<div class="control">
|
|
<input aria-label="Search for a book" class="input" type="text" name="q" placeholder="Search for a book" value="{{ query }}">
|
|
</div>
|
|
<div class="control">
|
|
<button class="button" type="submit">
|
|
<span class="icon icon-search" title="Search">
|
|
<span class="is-sr-only">search</span>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% if query %}
|
|
<p class="help"><a href="{% url 'list' list.id %}">Clear search</a></p>
|
|
{% endif %}
|
|
</form>
|
|
{% if not suggested_books %}
|
|
<p>No books found{% if query %} matching the query "{{ query }}"{% endif %}</p>
|
|
{% endif %}
|
|
{% for book in suggested_books %}
|
|
<div class="block columns">
|
|
<div class="column is-narrow">
|
|
<a href="{{ book.local_path }}">{% include 'snippets/book_cover.html' with book=book size="small" %}</a>
|
|
</div>
|
|
<div class="column">
|
|
<p>{% include 'snippets/book_titleby.html' with book=book %}</p>
|
|
<form name="add-book" method="post" action="{% url 'list-add-book' list.id %}">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="book" value="{{ book.id }}">
|
|
<button type="submit" class="button is-small is-link">{% if list.curation == 'open' or request.user == list.user %}Add{% else %}Submit{% endif %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|