takahe/templates/identity/view.html

126 wiersze
4.6 KiB
HTML
Czysty Zwykły widok Historia

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% block title %}{{ identity }}{% endblock %}
{% block opengraph %}
{% include "_opengraph.html" with opengraph_local=identity.to_opengraph_dict %}
{% endblock %}
2022-12-04 17:17:43 +00:00
{% block extra_head %}
{% if identity.local %}
<link rel="alternate" type="application/rss+xml" title="RSS feed for {{ identity.name }}" href="rss/" />
{% endif %}
{% endblock %}
{% block body_class %}has-banner{% endblock %}
2022-11-05 20:17:27 +00:00
{% block content %}
2022-11-06 00:00:01 +00:00
<h1 class="identity">
2022-11-17 15:21:42 +00:00
{% if identity.local_image_url %}
<img src="{{ identity.local_image_url.relative }}" class="banner">
2022-11-06 00:00:01 +00:00
{% endif %}
2022-11-18 01:52:00 +00:00
<img src="{{ identity.local_icon_url.relative }}" class="icon">
2022-11-13 23:41:48 +00:00
{% if request.identity %}
2022-11-18 03:04:01 +00:00
{% if identity == request.identity %}
2022-12-21 20:36:10 +00:00
<form class="inline follow-profile">
2022-11-18 03:04:01 +00:00
<a class="button" href="{% url "settings_profile" %}">Edit Profile</a>
</form>
{% else %}
<form action="{{ identity.urls.action }}" method="POST" class="inline follow-profile {% if reverse_follow %}has-reverse{% endif %}">
2022-11-18 03:04:01 +00:00
{% csrf_token %}
{% if reverse_follow %}
<span class="reverse-follow">Follows You</span>
{% endif %}
{% if follow %}
<input type="hidden" name="action" value="unfollow">
2022-12-22 05:54:01 +00:00
<button class="destructive">
{% if follow.pending %}Follow Pending{% else %}Unfollow{% endif %}
</button>
2022-11-18 03:04:01 +00:00
{% else %}
<input type="hidden" name="action" value="follow">
<button>Follow</button>
{% endif %}
</form>
{% endif %}
2022-11-13 23:41:48 +00:00
{% endif %}
2022-12-15 07:50:54 +00:00
{{ identity.html_name_or_handle }}
<small>
@{{ identity.handle }}
<a title="Copy handle"
class="copy"
_="on click
writeText('@{{ identity.handle }}') into the navigator's clipboard
then add .copied
wait 2s
then remove .copied">
<i class="fa-solid fa-copy"></i>
</a>
</small>
2022-11-06 00:00:01 +00:00
</h1>
2022-11-18 02:31:00 +00:00
{% if identity.summary %}
2022-11-19 00:24:43 +00:00
<div class="bio">
2022-11-18 02:31:00 +00:00
{{ identity.safe_summary }}
</div>
{% endif %}
{% if identity.metadata %}
<div class="identity-metadata">
{% for entry in identity.safe_metadata %}
<div class="metadata-pair">
<span class="metadata-name">{{ entry.name }}</span>
<span class="metadata-value">{{ entry.value }}</span>
</div>
{% endfor %}
</div>
{% endif %}
2022-12-21 20:36:10 +00:00
{% if identity.local and identity.config_identity.visible_follows %}
<div class="view-options follows">
<a href="{{ identity.urls.following }}" {% if not inbound or not follows_page %}class="selected"{% endif %}><strong>{{ following_count }}</strong> following</a>
<a href="{{ identity.urls.followers }}" {% if inbound or not follows_page %}class="selected"{% endif %}><strong>{{ followers_count }}</strong> follower{{ followers_count|pluralize }}</a>
</div>
{% endif %}
2022-11-06 00:00:01 +00:00
{% if not identity.local %}
{% if identity.outdated and not identity.name %}
2022-11-06 04:49:25 +00:00
<p class="system-note">
The system is still fetching this profile. Refresh to see updates.
</p>
{% else %}
<p class="system-note">
This is a member of another server.
2022-12-21 11:07:44 +00:00
<a href="{{ identity.profile_uri|default:identity.actor_uri }}">See their original profile ➔</a>
2022-11-06 04:49:25 +00:00
</p>
{% endif %}
2022-11-06 00:00:01 +00:00
{% endif %}
2022-11-05 20:17:27 +00:00
2022-12-21 20:36:10 +00:00
{% block subcontent %}
{% for post in page_obj %}
{% include "activities/_post.html" %}
{% empty %}
<span class="empty">
{% if identity.local %}
No posts yet.
{% else %}
No posts have been received/retrieved by this server yet.
2022-12-21 20:36:10 +00:00
{% if identity.profile_uri %}
You might find historical posts at
<a href="{{ identity.profile_uri }}">their original profile ➔</a>
{% endif %}
{% endif %}
2022-12-21 20:36:10 +00:00
</span>
{% endfor %}
2022-11-23 01:39:15 +00:00
2022-12-21 20:36:10 +00:00
{% if page_obj.has_next %}
<div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
{% endif %}
{% endblock %}
2022-11-05 20:17:27 +00:00
{% endblock %}