2022-11-05 20:17:27 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ identity }}{% endblock %}
|
|
|
|
|
2022-11-18 02:21:00 +00:00
|
|
|
{% 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 }}" class="banner">
|
2022-11-06 00:00:01 +00:00
|
|
|
{% endif %}
|
2022-11-18 01:52:00 +00:00
|
|
|
|
2022-11-17 15:21:42 +00:00
|
|
|
<img src="{{ identity.local_icon_url }}" 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 %}
|
|
|
|
<form class="inline follow">
|
|
|
|
<a class="button" href="{% url "settings_profile" %}">Edit Profile</a>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<form action="{{ identity.urls.action }}" method="POST" class="inline follow {% if reverse_follow %}has-reverse{% endif %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% if reverse_follow %}
|
|
|
|
<span class="reverse-follow">Follows You</span>
|
|
|
|
{% endif %}
|
|
|
|
{% if follow %}
|
|
|
|
<input type="hidden" name="action" value="unfollow">
|
|
|
|
<button>Unfollow</button>
|
|
|
|
{% else %}
|
|
|
|
<input type="hidden" name="action" value="follow">
|
|
|
|
<button>Follow</button>
|
|
|
|
{% endif %}
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
2022-11-13 23:41:48 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2022-11-30 22:12:00 +00:00
|
|
|
{{ identity.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 %}
|
|
|
|
|
2022-11-27 23:43:20 +00:00
|
|
|
{% if identity.metadata %}
|
|
|
|
<table class="metadata">
|
|
|
|
{% for entry in identity.safe_metadata %}
|
|
|
|
<tr>
|
|
|
|
<td class="name">{{ entry.name }}</td>
|
|
|
|
<td class="value">{{ entry.value }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
2022-11-06 00:00:01 +00:00
|
|
|
{% if not identity.local %}
|
2022-11-07 04:30:07 +00:00
|
|
|
{% 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-11-13 23:41:48 +00:00
|
|
|
<a href="{{ identity.profile_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-11-23 01:39:15 +00:00
|
|
|
{% for post in page_obj %}
|
2022-11-18 01:52:00 +00:00
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% empty %}
|
2022-12-01 16:56:41 +00:00
|
|
|
<span class="empty">
|
|
|
|
{% if identity.local %}
|
|
|
|
No posts yet.
|
|
|
|
{% else %}
|
|
|
|
No posts have been received/retrieved by this server yet.
|
|
|
|
|
|
|
|
{% if identity.profile_uri %}
|
|
|
|
You might find historical posts at
|
|
|
|
<a href="{{ identity.profile_uri }}">their original profile ➔</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
2022-11-18 01:52:00 +00:00
|
|
|
{% endfor %}
|
2022-11-23 01:39:15 +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 %}
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endblock %}
|