2018-05-13 13:53:58 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
|
2018-06-12 22:14:49 +02:00
|
|
|
{% block title %}
|
2018-06-12 14:17:02 +02:00
|
|
|
{% if user.display_name %}
|
|
|
|
{% set name = user.display_name %}
|
|
|
|
{% else %}
|
|
|
|
{% set name = user.username %}
|
|
|
|
{% endif %}
|
|
|
|
|
2018-06-17 17:26:15 +02:00
|
|
|
{{ "{{ name }}'s followers" | _(name=name) }}
|
2018-05-13 13:53:58 +02:00
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div>
|
|
|
|
<h1>
|
2018-06-12 14:17:02 +02:00
|
|
|
{{ name }}
|
2018-05-13 13:53:58 +02:00
|
|
|
{% if user.is_admin %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<span class="badge">{{ "Admin" | _ }}</span>
|
2018-05-13 13:53:58 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if is_self %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<span class="badge">{{ "It is you" | _ }}</span>
|
2018-05-13 13:53:58 +02:00
|
|
|
{% endif %}
|
|
|
|
</h1>
|
2018-06-13 19:48:37 +02:00
|
|
|
|
|
|
|
{% if is_remote %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<a class="inline-block button" href="{{ user.ap_url }}">{{ "Open on {{ instance_url }}" | _(instance_url=instance_url) }}</a>
|
2018-06-13 19:48:37 +02:00
|
|
|
{% endif %}
|
2018-06-13 19:52:26 +02:00
|
|
|
|
2018-06-17 17:26:15 +02:00
|
|
|
{% if (not is_self) and account %}
|
2018-06-13 20:06:14 +02:00
|
|
|
{% if follows %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<a href="../follow/" class="inline-block button">{{ "Follow" | _ }}</a>
|
2018-06-13 20:06:14 +02:00
|
|
|
{% else %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<a href="../follow/" class="inline-block button">{{ "Unfollow" | _ }}</a>
|
2018-06-13 20:06:14 +02:00
|
|
|
{% endif %}
|
2018-06-13 19:52:26 +02:00
|
|
|
{% endif %}
|
2018-05-13 13:53:58 +02:00
|
|
|
</div>
|
|
|
|
|
2018-06-17 17:26:15 +02:00
|
|
|
<h2>{{ "Followers" | _ }}</h2>
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="cards">
|
2018-05-13 13:53:58 +02:00
|
|
|
{% for follower in followers %}
|
2018-06-12 14:17:02 +02:00
|
|
|
{% if follower.display_name %}
|
|
|
|
{% set follower_name = follower.display_name %}
|
|
|
|
{% else %}
|
|
|
|
{% set follower_name = follower.username %}
|
|
|
|
{% endif %}
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="card">
|
2018-06-13 19:48:37 +02:00
|
|
|
<h3><a href="/@/{{ follower.fqn }}/">{{ follower_name }}</a> — @{{ follower.fqn }}</h3>
|
2018-06-11 16:05:18 +02:00
|
|
|
<main><p>{{ follower.summary | safe }}</p></main>
|
2018-05-13 13:53:58 +02:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2018-05-13 22:33:21 +02:00
|
|
|
</div>
|
2018-05-13 13:53:58 +02:00
|
|
|
{% endblock content %}
|