summaryrefslogtreecommitdiffstats
path: root/templates/identity/view.html
blob: c830fc595e637a9482a65031a57628ff174f8e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{% extends "base.html" %}
{% load static %}

{% block title %}{{ identity }}{% endblock %}

{% block content %}
    <nav>
        <a href="." class="selected">Profile</a>
    </nav>

    <h1 class="identity">
        {% if identity.local_image_url %}
            <img src="{{ identity.local_image_url }}" class="banner">
        {% endif %}
        <img src="{{ identity.local_icon_url }}" class="icon">

        {% 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>
    </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 %}

    <section class="columns">
        <div class="left-column">
            {% for post in posts %}
                {% include "activities/_post.html" %}
            {% empty %}
                No posts yet.
            {% endfor %}
        </div>
    </section>
{% endblock %}