2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
2018-05-13 19:19:23 +02:00
|
|
|
{% import "macros" as macros %}
|
2018-05-09 19:53:12 +02:00
|
|
|
|
2018-06-12 22:14:49 +02:00
|
|
|
{% block title %}
|
2018-06-12 14:42:34 +02:00
|
|
|
{% if user.display_name %}
|
|
|
|
{% set name = user.display_name %}
|
2018-06-12 14:17:02 +02:00
|
|
|
{% else %}
|
|
|
|
{% set name = user.username %}
|
|
|
|
{% endif %}
|
2018-06-12 19:05:33 +02:00
|
|
|
|
2018-06-12 14:45:53 +02:00
|
|
|
{{ name }}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-12 18:55:25 +02:00
|
|
|
<div>
|
|
|
|
<h1>
|
2018-06-12 14:17:02 +02:00
|
|
|
{{ name }}
|
2018-05-12 18:55:25 +02:00
|
|
|
{% if user.is_admin %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<span class="badge">{{ "Admin" | _ }}</span>
|
2018-05-12 18:55:25 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if is_self %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<span class="badge">{{ "It is you" | _ }}</span>
|
2018-05-12 18:55:25 +02:00
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{% if is_self %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<a href="edit" class="button inline-block">{{ "Edit your profile" | _ }}</a>
|
2018-05-12 18:55:25 +02:00
|
|
|
{% endif %}
|
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-13 20:06:14 +02:00
|
|
|
{% if not is_self and account %}
|
|
|
|
{% 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-12 18:55:25 +02:00
|
|
|
</div>
|
2018-05-12 15:31:09 +02:00
|
|
|
|
2018-05-13 13:53:58 +02:00
|
|
|
<div>
|
2018-06-17 12:16:20 +02:00
|
|
|
<a href="followers/">{{ "{{ count }} followers" | _n(singular="One follower", count=n_followers) }}</a>
|
2018-05-13 13:53:58 +02:00
|
|
|
</div>
|
|
|
|
|
2018-05-12 15:31:09 +02:00
|
|
|
<div>
|
2018-06-11 16:05:18 +02:00
|
|
|
{{ user.summary | safe }}
|
2018-05-12 15:31:09 +02:00
|
|
|
</div>
|
2018-05-12 18:55:25 +02:00
|
|
|
|
2018-05-24 11:49:02 +02:00
|
|
|
{% if recents | length != 0 %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<h2>{{ "Latest articles" | _ }}</h2>
|
2018-05-24 11:49:02 +02:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in recents %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-24 11:45:36 +02:00
|
|
|
|
2018-05-24 11:49:02 +02:00
|
|
|
{% if reshares | length != 0 %}
|
2018-06-17 17:26:15 +02:00
|
|
|
<h2>{{ "Recently reshared" | _ }}</h2>
|
2018-05-24 11:49:02 +02:00
|
|
|
<div class="cards">
|
|
|
|
{% for article in reshares %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock content %}
|