takahe/templates/identity/view.html

57 lines
1.7 KiB
HTML
Raw Normal View History

2022-11-05 13:17:27 -07:00
{% extends "base.html" %}
2022-11-05 19:10:39 -07:00
{% load static %}
2022-11-05 13:17:27 -07:00
{% block title %}{{ identity }}{% endblock %}
{% block content %}
2022-11-13 15:41:48 -08:00
<nav>
<a href="." class="selected">Profile</a>
</nav>
2022-11-05 17:00:01 -07:00
<h1 class="identity">
{% if identity.icon_uri %}
<img src="{{identity.icon_uri}}" class="icon">
2022-11-05 19:10:39 -07:00
{% else %}
<img src="{% static "img/unknown-icon-128.png" %}" class="icon">
2022-11-05 17:00:01 -07:00
{% endif %}
2022-11-13 15:41:48 -08: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 %}
{{ identity.name_or_handle }} <small>@{{ identity.handle }}</small>
2022-11-05 17:00:01 -07:00
</h1>
{% if not identity.local %}
{% if identity.outdated and not identity.name %}
2022-11-05 21:49:25 -07: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 15:41:48 -08:00
<a href="{{ identity.profile_uri }}">See their original profile ➔</a>
2022-11-05 21:49:25 -07:00
</p>
{% endif %}
2022-11-05 17:00:01 -07:00
{% endif %}
2022-11-05 13:17:27 -07:00
2022-11-13 15:41:48 -08:00
<section class="columns">
<div class="left-column">
{% for post in posts %}
{% include "activities/_post.html" %}
{% empty %}
No posts yet.
{% endfor %}
</div>
</section>
2022-11-05 13:17:27 -07:00
{% endblock %}