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 %}
|
|
|
|
<form action="{{ identity.urls.action }}" method="POST" class="inline follow">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% 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-07 04:30:07 +00:00
|
|
|
{{ identity.name_or_handle }} <small>@{{ identity.handle }}</small>
|
2022-11-06 00:00:01 +00:00
|
|
|
</h1>
|
|
|
|
|
2022-11-18 02:31:00 +00:00
|
|
|
{% if identity.summary %}
|
|
|
|
<div class="summary">
|
|
|
|
{{ identity.safe_summary }}
|
|
|
|
</div>
|
|
|
|
{% 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-18 01:52:00 +00:00
|
|
|
{% for post in posts %}
|
|
|
|
{% include "activities/_post.html" %}
|
|
|
|
{% empty %}
|
|
|
|
No posts yet.
|
|
|
|
{% endfor %}
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endblock %}
|