takahe/templates/identity/view.html

29 lines
798 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
2022-11-06 02:10:39 +00:00
{% load static %}
2022-11-05 20:17:27 +00:00
{% block title %}{{ identity }}{% endblock %}
{% block content %}
2022-11-06 00:00:01 +00:00
<h1 class="identity">
{% if identity.icon_uri %}
<img src="{{identity.icon_uri}}" class="icon">
2022-11-06 02:10:39 +00:00
{% else %}
<img src="{% static "img/unknown-icon-128.png" %}" class="icon">
2022-11-06 00:00:01 +00:00
{% endif %}
{{ identity }} <small>{{ identity.handle }}</small>
</h1>
{% if not identity.local %}
<p class="system-note">
This user is a member of another server.
<a href="{{ identity.profile_uri }}">See their original profile</a>
</p>
{% endif %}
2022-11-05 20:17:27 +00:00
{% for status in statuses %}
{% include "statuses/_status.html" %}
{% empty %}
No statuses yet.
{% endfor %}
{% endblock %}