forked from mirrors/bookwyrm
add list cards to groups page
- add list cards to groups page based on lists page - add sort to members on group page
This commit is contained in:
parent
86a60d58e5
commit
d4fcf88cf5
2 changed files with 38 additions and 4 deletions
|
@ -34,10 +34,44 @@
|
||||||
<ul start="{{ lists.start_index }}" class="ordered-list">
|
<ul start="{{ lists.start_index }}" class="ordered-list">
|
||||||
{% for list in group.lists.all %}
|
{% for list in group.lists.all %}
|
||||||
<li class="block mb-5">
|
<li class="block mb-5">
|
||||||
<!-- TODO: make these proper list cards -->
|
<div class="columns is-multiline">
|
||||||
<div class="card">
|
{% for list in lists %}
|
||||||
<a href={{ member.local_path }}>{{ list.name }}</a>
|
<div class="column is-one-quarter">
|
||||||
|
<div class="card is-stretchable">
|
||||||
|
<header class="card-header">
|
||||||
|
<h4 class="card-header-title">
|
||||||
|
<a href="{{ list.local_path }}">{{ list.name }}</a> <span class="subtitle">{% include 'snippets/privacy-icons.html' with item=list %}</span>
|
||||||
|
</h4>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{% with list_books=list.listitem_set.all|slice:5 %}
|
||||||
|
{% if list_books %}
|
||||||
|
<div class="card-image columns is-mobile is-gapless is-clipped">
|
||||||
|
{% for book in list_books %}
|
||||||
|
<a class="column is-cover" href="{{ book.book.local_path }}">
|
||||||
|
{% include 'snippets/book_cover.html' with book=book.book cover_class='is-h-s' size='small' aria='show' %}
|
||||||
|
</a>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endwith %}
|
||||||
|
|
||||||
|
<div class="card-content is-flex-grow-0">
|
||||||
|
<div class="is-clipped" {% if list.description %}title="{{ list.description }}"{% endif %}>
|
||||||
|
{% if list.description %}
|
||||||
|
{{ list.description|to_markdown|safe|truncatechars_html:30 }}
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<p class="subtitle help">
|
||||||
|
{% include 'lists/created_text.html' with list=list %}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -48,7 +48,7 @@ class UserGroups(View):
|
||||||
def get(self, request, username):
|
def get(self, request, username):
|
||||||
"""display a group"""
|
"""display a group"""
|
||||||
user = get_user_from_username(request.user, username)
|
user = get_user_from_username(request.user, username)
|
||||||
groups = models.Group.objects.filter(members=user)
|
groups = models.Group.objects.filter(members=user).order_by("-updated_date")
|
||||||
paginated = Paginator(groups, 12)
|
paginated = Paginator(groups, 12)
|
||||||
|
|
||||||
data = {
|
data = {
|
||||||
|
|
Loading…
Reference in a new issue