mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-26 09:11:00 +00:00
28 lines
798 B
HTML
28 lines
798 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}{{ identity }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="identity">
|
|
{% if identity.icon_uri %}
|
|
<img src="{{identity.icon_uri}}" class="icon">
|
|
{% else %}
|
|
<img src="{% static "img/unknown-icon-128.png" %}" class="icon">
|
|
{% 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 %}
|
|
|
|
{% for status in statuses %}
|
|
{% include "statuses/_status.html" %}
|
|
{% empty %}
|
|
No statuses yet.
|
|
{% endfor %}
|
|
{% endblock %}
|