mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-07 07:59:46 +00:00
47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
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.name_or_handle }} <small>@{{ identity.handle }}</small>
|
|
</h1>
|
|
|
|
{% if not identity.local %}
|
|
{% if identity.outdated and not identity.name %}
|
|
<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.
|
|
<a href="{{ identity.profile_uri }}">See their original profile</a>
|
|
</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if request.identity %}
|
|
<form action="{{ identity.urls.action }}" method="POST">
|
|
{% 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 %}
|
|
|
|
{% for post in posts %}
|
|
{% include "activities/_post.html" %}
|
|
{% empty %}
|
|
No posts yet.
|
|
{% endfor %}
|
|
{% endblock %}
|