moviewyrm/bookwyrm/templates/user/layout.html

79 lines
2.5 KiB
HTML
Raw Normal View History

2021-01-29 17:05:53 +00:00
{% extends 'layout.html' %}
{% load i18n %}
2020-03-17 00:09:45 +00:00
{% load humanize %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2021-01-29 17:29:59 +00:00
{% block title %}{{ user.display_name }}{% endblock %}
2021-01-29 17:29:59 +00:00
{% block content %}
2021-01-29 17:05:53 +00:00
<header class="block">
{% block header %}{% endblock %}
</header>
{# user bio #}
2020-09-29 20:39:44 +00:00
<div class="block">
<div class="columns">
2021-02-27 19:53:36 +00:00
<div class="column is-two-fifths">
{% include 'user/user_preview.html' with user=user %}
2020-03-17 00:09:45 +00:00
</div>
{% if user.summary %}
2021-02-27 19:53:36 +00:00
<div class="column box has-background-white-bis content">
{{ user.summary | to_markdown | safe }}
2020-03-17 00:09:45 +00:00
</div>
{% endif %}
2020-03-17 00:09:45 +00:00
</div>
2021-01-29 19:44:04 +00:00
{% if not is_self and request.user.is_authenticated %}
{% include 'snippets/follow_button.html' with user=user %}
2020-03-17 00:09:45 +00:00
{% endif %}
{% if is_self and user.follower_requests.all %}
<div class="follow-requests">
<h2>{% trans "Follow Requests" %}</h2>
2020-03-17 00:09:45 +00:00
{% for requester in user.follower_requests.all %}
<div class="row shrink">
<p>
2021-03-07 18:24:46 +00:00
<a href="{{ requester.local_path }}">{{ requester.display_name }}</a> ({{ requester.username }})
2020-03-17 00:09:45 +00:00
</p>
{% include 'snippets/follow_request_buttons.html' with user=requester %}
</div>
{% endfor %}
</div>
{% endif %}
</div>
{% block tabs %}
2021-02-01 19:34:08 +00:00
{% with user|username as username %}
<nav class="tabs">
<ul>
{% url 'user-feed' user|username as url %}
2021-02-01 19:34:08 +00:00
<li{% if url == request.path or url == request.path|add:'/' %} class="is-active"{% endif %}>
<a href="{{ url }}">{% trans "Activity" %}</a>
2021-02-01 19:34:08 +00:00
</li>
{% if is_self or user.goal.exists %}
2021-02-01 19:34:08 +00:00
{% now 'Y' as year %}
{% url 'user-goal' user|username year as url %}
2021-02-01 19:34:08 +00:00
<li{% if url in request.path %} class="is-active"{% endif %}>
<a href="{{ url }}">{% trans "Reading Goal" %}</a>
2021-02-01 19:34:08 +00:00
</li>
{% endif %}
2021-03-07 16:42:30 +00:00
{% if is_self or user.list_set.exists %}
{% url 'user-lists' user|username as url %}
2021-02-01 19:34:08 +00:00
<li{% if url in request.path %} class="is-active"{% endif %}>
<a href="{{ url }}">{% trans "Lists" %}</a>
2021-02-01 19:34:08 +00:00
</li>
{% endif %}
{% if user.shelf_set.exists %}
{% url 'user-shelves' user|username as url %}
2021-02-01 19:34:08 +00:00
<li{% if url in request.path %} class="is-active"{% endif %}>
<a href="{{ url }}">{% trans "Books" %}</a>
2021-02-01 19:34:08 +00:00
</li>
{% endif %}
2021-02-01 19:34:08 +00:00
</ul>
</nav>
{% endwith %}
{% endblock %}
2020-03-17 00:09:45 +00:00
2021-01-29 17:05:53 +00:00
{% block panel %}{% endblock %}
{% endblock %}