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