bookwyrm-mastodon/bookwyrm/templates/user.html

80 lines
2.2 KiB
HTML
Raw Normal View History

2020-01-26 15:14:27 -05:00
{% extends 'layout.html' %}
{% block content %}
2020-11-10 16:39:37 -05:00
<div class="columns">
<div class="column">
<h1 class="title">User profile</h1>
</div>
{% if is_self %}
<div class="column is-narrow">
<a href="/user-edit/">
<span class="icon icon-pencil">
<span class="is-sr-only">Edit profile</span>
</span>
</a>
</div>
{% endif %}
</div>
2020-11-06 15:02:25 -05:00
{% include 'snippets/user_header.html' with user=user %}
2020-09-29 22:44:00 -04:00
<div class="block">
<h2 class="title">Shelves</h2>
<div class="columns">
{% for shelf in shelves %}
<div class="column is-narrow">
<h3>{{ shelf.name }}
{% if shelf.size > 3 %}<small>(<a href="{{ shelf.remote_id }}">See all {{ shelf.size }}</a>)</small>{% endif %}</h3>
<div class="is-mobile field is-grouped">
{% for book in shelf.books %}
2020-09-30 00:45:59 -04:00
<div class="control">
<a href="/book/{{ book.id }}">
{% include 'snippets/book_cover.html' with book=book size="medium" %}
</a>
</div>
2020-09-29 22:44:00 -04:00
{% endfor %}
</div>
</div>
{% endfor %}
</div>
<small><a href="/user/{{ user.localname }}/shelves">See all {{ shelf_count }} shelves</a></small>
2020-09-29 16:17:29 -04:00
</div>
2020-01-26 15:14:27 -05:00
2020-03-16 19:10:59 -04:00
<div>
2020-09-29 16:17:29 -04:00
<div class="block">
<h2 class="title">User Activity</h2>
</div>
2020-03-16 19:10:59 -04:00
{% for activity in activities %}
2020-09-29 16:17:29 -04:00
<div class="block">
2020-03-16 19:10:59 -04:00
{% include 'snippets/status.html' with status=activity %}
2020-01-29 18:10:32 -05:00
</div>
{% endfor %}
2020-03-16 20:09:45 -04:00
{% if not activities %}
2020-09-30 12:00:33 -04:00
<div class="block">
2020-03-16 20:09:45 -04:00
<p>No activities yet!</a>
</div>
{% endif %}
2020-11-11 13:43:47 -05:00
<nav class="pagination" role="navigation" aria-label="pagination">
{% if prev %}
<p class="pagination-previous">
<a href="{{ prev }}">
<span class="icon icon-arrow-left"></span>
Previous
</a>
</p>
{% endif %}
{% if next %}
<p class="pagination-next">
<a href="{{ next }}">
Next
<span class="icon icon-arrow-right"></span>
</a>
</p>
{% endif %}
</nav>
2020-01-26 15:14:27 -05:00
</div>
2020-01-29 18:10:32 -05:00
2020-01-26 15:14:27 -05:00
{% endblock %}