2024-02-07 17:31:12 +13:00
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-10-07 21:32:19 +13:00
{% from 'bootstrap/form.html' import render_form %}
2024-02-19 16:26:58 +13:00
{% if current_user.is_authenticated and user.id == current_user.id %}
2024-02-19 15:56:56 +13:00
{% set active_child = 'view_profile' %}
{% endif %}
2023-10-07 21:32:19 +13:00
{% block app_content %}
< div class = "row" >
2023-11-30 20:57:51 +13:00
< div class = "col-12 col-md-8 position-relative main_pane" >
2023-10-07 21:32:19 +13:00
{% if user.cover_image() != '' %}
< div class = "community_header" style = "height: 240px; background-image: url({{ user.cover_image() }});" >
< nav aria-label = "breadcrumb" id = "breadcrumb_nav" title = "Navigation" >
< ol class = "breadcrumb" >
< li class = "breadcrumb-item" > < a href = "/" > {{ _('Home') }}< / a > < / li >
2024-01-03 20:53:06 +13:00
< li class = "breadcrumb-item" > < a href = "/people" > {{ _('People') }}< / a > < / li >
2024-01-01 14:49:15 +13:00
< li class = "breadcrumb-item active" > {{ user.display_name()|shorten }}< / li >
2023-10-07 21:32:19 +13:00
< / ol >
< / nav >
< / div >
2024-01-23 19:17:05 +13:00
< img class = "community_icon_big bump_up rounded-circle" src = "{{ user.avatar_image() }}" alt = "{{ _('Profile pic') }}" / >
2024-04-19 20:06:08 +12:00
< h1 class = "mt-2" > {{ user.display_name() if user.is_local() else user.display_name() + ', ' + user.ap_id }}
{% if current_user.is_authenticated %}
{% include 'user/_notification_toggle.html' %}
{% endif %}
< / h1 >
2023-10-07 21:32:19 +13:00
{% elif user.avatar_image() != '' %}
< div class = "row" >
2024-05-12 14:37:27 +12:00
< nav aria-label = "breadcrumb" id = "breadcrumb_nav" title = "Navigation" >
< ol class = "breadcrumb" >
< li class = "breadcrumb-item" > < a href = "/" > {{ _('Home') }}< / a > < / li >
< li class = "breadcrumb-item" > < a href = "/people" > {{ _('People') }}< / a > < / li >
< li class = "breadcrumb-item active" > {{ user.display_name()|shorten }}< / li >
< / ol >
< / nav >
2023-10-07 21:32:19 +13:00
< div class = "col-2" >
2024-04-17 19:17:11 +12:00
{% if low_bandwidth %}
< img class = "community_icon_big rounded-circle" src = "{{ user.avatar_image() }}" alt = "{{ _('Profile pic') }}" / >
{% else %}
{% if user.avatar.source_url and user.avatar.source_url.endswith('.mp4') %}
< video autoplay disablepictureinpicture loop muted class = "community_icon_big rounded-circle" >
< source src = "{{ user.avatar.source_url }}" type = "video/mp4" >
< / video >
{% else %}
< img class = "community_icon_big rounded-circle" src = "{{ user.avatar_image() }}" alt = "{{ _('Profile pic') }}" / >
{% endif %}
{% endif %}
2023-10-07 21:32:19 +13:00
< / div >
< div class = "col-10" >
2024-04-19 20:06:08 +12:00
< h1 class = "mt-3" > {{ user.display_name() if user.is_local() else user.display_name() + ', ' + user.ap_id }}
{% if current_user.is_authenticated %}
{% include 'user/_notification_toggle.html' %}
{% endif %}
< / h1 >
2023-10-07 21:32:19 +13:00
< / div >
< / div >
{% else %}
< nav aria-label = "breadcrumb" id = "breadcrumb_nav" title = "Navigation" >
< ol class = "breadcrumb" >
< li class = "breadcrumb-item" > < a href = "/" > {{ _('Home') }}< / a > < / li >
2024-01-03 20:53:06 +13:00
< li class = "breadcrumb-item" > < a href = "/people" > {{ _('People') }}< / a > < / li >
2024-01-09 20:44:08 +13:00
< li class = "breadcrumb-item active" > {{ user.link()|shorten }}< / li >
2023-10-07 21:32:19 +13:00
< / ol >
< / nav >
2024-04-19 20:06:08 +12:00
< h1 class = "mt-2" > {{ user.display_name() if user.is_local() else user.display_name() + ', ' + user.ap_id }}
{% if current_user.is_authenticated %}
{% include 'user/_notification_toggle.html' %}
{% endif %}
< / h1 >
2023-10-07 21:32:19 +13:00
{% endif %}
2024-05-12 14:16:12 +12:00
< div class = "profile_action_buttons" >
2024-02-19 16:26:58 +13:00
{% if current_user.is_authenticated and current_user != user %}
2024-02-19 15:01:53 +13:00
< a class = "btn btn-primary" href = "{{ url_for('chat.new_message', to=user.id) }}" rel = "nofollow" aria-label = "{{ _('Send message') }}" > {{ _('Send message') }}< / a >
{% if user.matrix_user_id %}
< a class = "btn btn-primary" href = "https://matrix.to/#/{{ user.matrix_user_id }}" rel = "nofollow" aria-label = "{{ _('Send message with matrix chat') }}" > {{ _('Send message using Matrix') }}< / a >
2024-02-18 11:46:11 +13:00
{% endif %}
2024-02-19 16:26:58 +13:00
{% if current_user.has_blocked_user(user.id) %}
2024-03-11 21:17:18 +13:00
< a class = "btn btn-primary" href = "{{ url_for('user.unblock_profile', actor=user.link()) }}" rel = "nofollow" > {{ _('Unblock') }}< / a >
2024-02-19 16:26:58 +13:00
{% else %}
2024-03-11 21:17:18 +13:00
< a class = "btn btn-primary confirm_first" href = "{{ url_for('user.block_profile', actor=user.link()) }}" rel = "nofollow" > {{ _('Block') }}< / a >
2024-01-01 16:26:57 +13:00
{% endif %}
2024-03-11 21:17:18 +13:00
< a class = "btn btn-primary" href = "{{ url_for('user.report_profile', actor=user.link()) }}" rel = "nofollow" > {{ _('Report') }}< / a >
2024-01-01 16:26:57 +13:00
{% endif %}
2024-05-12 14:16:12 +12:00
{% if user.is_local() %}
2024-05-17 21:27:45 +12:00
< a class = "btn btn-primary" href = "{{ url_for('user.fediverse_redirect', actor=user.link()) }}" rel = "nofollow" > < img src = "/static/images/fediverse_logo.svg" width = "25" height = "25" > {{ _('Follow') }}< / a >
2024-05-12 14:16:12 +12:00
{% endif %}
< / div >
2023-12-27 19:51:07 +13:00
< p class = "small" > {{ _('Joined') }}: {{ moment(user.created).fromNow(refresh=True) }}< br / >
2024-03-20 10:45:26 +00:00
{% if user.bot %}
{{ _('Bot Account') }}< br / >
{% endif %}
2023-12-27 19:51:07 +13:00
{{ _('Attitude') }}: < span title = "{{ _('Ratio of upvotes cast to downvotes cast. Higher is more positive.') }}" > {{ (user.attitude * 100) | round | int }}%< / span > < / p >
2023-12-24 16:20:18 +13:00
{{ user.about_html|safe }}
2023-12-15 17:35:11 +13:00
{% if posts %}
2023-10-07 21:32:19 +13:00
< h2 class = "mt-4" > Posts< / h2 >
< div class = "post_list" >
2024-02-06 17:40:03 +13:00
{% for post in posts.items %}
2023-11-30 06:36:08 +13:00
{% include 'post/_post_teaser.html' %}
2023-10-07 21:32:19 +13:00
{% endfor %}
< / div >
2024-01-23 19:17:05 +13:00
< nav aria-label = "{{ _('Post pagination') }}" class = "mt-4" role = "navigation" >
2023-12-15 17:35:11 +13:00
{% if post_prev_url %}
< a href = "{{ post_prev_url }}" class = "btn btn-primary" >
< span aria-hidden = "true" > ← < / span > {{ _('Previous page') }}
< / a >
{% endif %}
{% if post_next_url %}
< a href = "{{ post_next_url }}" class = "btn btn-primary" >
{{ _('Next page') }} < span aria-hidden = "true" > → < / span >
< / a >
{% endif %}
< / nav >
2024-01-05 14:09:46 +13:00
{% else %}
< p > {{ _('No posts yet.') }}< / p >
2023-10-07 21:32:19 +13:00
{% endif %}
2023-12-15 17:35:11 +13:00
{% if post_replies %}
< h2 class = "mt-4" id = "comments" > Comments< / h2 >
2023-10-07 21:32:19 +13:00
< div class = "post_list" >
2024-02-06 17:40:03 +13:00
{% for post_reply in post_replies.items %}
2023-11-30 06:36:08 +13:00
{% include 'post/_post_reply_teaser.html' %}
2023-10-07 21:32:19 +13:00
{% endfor %}
< / div >
2024-01-23 19:17:05 +13:00
< nav aria-label = "{{ _('Comment pagination') }}" class = "mt-4" role = "navigation" >
2023-12-15 17:35:11 +13:00
{% if replies_prev_url %}
< a href = "{{ replies_prev_url }}#comments" class = "btn btn-primary" >
< span aria-hidden = "true" > ← < / span > {{ _('Previous page') }}
< / a >
{% endif %}
{% if replies_next_url %}
< a href = "{{ replies_next_url }}#comments" class = "btn btn-primary" >
{{ _('Next page') }} < span aria-hidden = "true" > → < / span >
< / a >
{% endif %}
< / nav >
2024-01-05 14:09:46 +13:00
{% else %}
< p > {{ _('No comments yet.') }}< / p >
2023-10-07 21:32:19 +13:00
{% endif %}
< / div >
2024-02-05 08:39:08 +13:00
< aside id = "side_pane" class = "col-12 col-md-4 side_pane" role = "complementary" >
2023-10-21 15:49:01 +13:00
{% if current_user.is_authenticated and current_user.id == user.id %}
2024-03-08 11:20:46 +01:00
< div class = "card mb-3" >
2023-10-07 21:32:19 +13:00
< div class = "card-header" >
< h2 > {{ _('Manage') }}< / h2 >
< / div >
< div class = "card-body" >
< div class = "row" >
< div class = "col-6" >
2024-06-04 09:44:10 +12:00
< a class = "w-100 btn btn-primary" href = "/u/{{ user.user_name.lower() }}/profile" > {{ _('Profile') }}< / a >
2023-10-07 21:32:19 +13:00
< / div >
< div class = "col-6" >
2024-01-11 20:39:22 +13:00
< a class = "w-100 btn btn-primary" href = "/user/settings" > {{ _('Settings') }}< / a >
2023-10-07 21:32:19 +13:00
< / div >
< / div >
< / div >
< / div >
{% endif %}
2023-11-12 20:54:22 +13:00
{% if len(subscribed) > 0 or len(moderates) > 0 %}
2024-03-08 11:20:46 +01:00
< div class = "card mb-3" >
2023-10-07 21:32:19 +13:00
< div class = "card-header" >
2023-11-12 20:54:22 +13:00
< h2 > {{ _('Communities') }}< / h2 >
2023-10-07 21:32:19 +13:00
< / div >
< div class = "card-body" >
2023-11-12 20:54:22 +13:00
{% if len(subscribed) > 0 %}
2024-01-05 14:09:46 +13:00
< h4 > {{ _('Member of') }}< / h4 >
< ul class = "list-group list-group-flush" >
2023-11-12 20:54:22 +13:00
{% for community in subscribed %}
2024-01-05 14:09:46 +13:00
< li class = "list-group-item" >
2023-11-12 20:54:22 +13:00
< a href = "/c/{{ community.link() }}" > < img src = "{{ community.icon_image() }}" class = "community_icon rounded-circle" loading = "lazy" / > {{ community.display_name() }}< / a >
< / li >
{% endfor %}
< / ul >
{% endif %}
{% if len(moderates) > 0 %}
< h4 > Moderates< / h4 >
2024-01-05 14:09:46 +13:00
< ul class = "list-group list-group-flush" >
2023-11-12 20:54:22 +13:00
{% for community in moderates %}
2024-01-05 14:09:46 +13:00
< li class = "list-group-item" >
2023-11-12 20:54:22 +13:00
< a href = "/c/{{ community.link() }}" > < img src = "{{ community.icon_image() }}" class = "community_icon rounded-circle" loading = "lazy" / > {{ community.display_name() }}< / a >
< / li >
{% endfor %}
< / ul >
{% endif %}
2023-10-07 21:32:19 +13:00
< / div >
< / div >
{% endif %}
2023-10-21 15:49:01 +13:00
{% if current_user.is_authenticated and (user_access('ban users', current_user.id) or user_access('manage users', current_user.id)) and user.id != current_user.id %}
2024-03-08 11:20:46 +01:00
< div class = "card mb-3" >
2023-10-21 15:49:01 +13:00
< div class = "card-header" >
2024-03-26 22:48:45 +01:00
< h2 > {{ _('Moderate user') }}< / h2 >
2023-10-21 15:49:01 +13:00
< / div >
< div class = "card-body" >
< div class = "row" >
{% if user_access('ban users', current_user.id) %}
2023-10-22 18:26:57 +13:00
{% if user.banned %}
< div class = "col-4" >
2024-01-09 20:44:08 +13:00
< a class = "w-100 btn btn-primary confirm_first" href = "/u/{{ user.link() }}/unban" > {{ _('Unban') }}< / a >
2023-10-22 18:26:57 +13:00
< / div >
{% else %}
< div class = "col-4" >
2024-01-09 20:44:08 +13:00
< a class = "w-100 btn btn-primary confirm_first" href = "/u/{{ user.link() }}/ban" > {{ _('Ban') }}< / a >
2023-10-22 18:26:57 +13:00
< / div >
{% endif %}
2023-10-21 15:49:01 +13:00
{% endif %}
{% if user_access('manage users', current_user.id) %}
2023-10-22 18:26:57 +13:00
< div class = "col-4" >
2024-01-09 20:44:08 +13:00
< a class = "w-100 btn btn-primary confirm_first" href = "/u/{{ user.link() }}/delete" > {{ _('Delete') }}< / a >
2023-10-22 18:26:57 +13:00
< / div >
< div class = "col-4" >
2024-01-09 20:44:08 +13:00
< a class = "w-100 btn btn-primary confirm_first" href = "/u/{{ user.link() }}/ban_purge" > {{ _('Ban + Purge') }}< / a >
2023-10-22 18:26:57 +13:00
< / div >
2023-10-21 15:49:01 +13:00
{% endif %}
< / div >
< / div >
< / div >
{% endif %}
2023-11-12 20:54:22 +13:00
{% if upvoted %}
2024-03-08 11:20:46 +01:00
< div class = "card mb-3" >
2023-11-12 20:54:22 +13:00
< div class = "card-header" >
< h2 > {{ _('Upvoted') }}< / h2 >
< / div >
< div class = "card-body" >
< ul >
{% for post in upvoted %}
2023-12-10 15:10:09 +13:00
< li > < a href = "{{ url_for('activitypub.post_ap', post_id=post.id) }}" > {{ post.title }}< / a > < / li >
2023-11-12 20:54:22 +13:00
{% endfor %}
< / ul >
< / div >
< / div >
{% endif %}
2024-01-28 21:38:04 +13:00
< / aside >
2023-10-07 21:32:19 +13:00
< / div >
{% endblock %}