Plume/templates/users/details.html.tera

70 lines
1.9 KiB
Text
Raw Normal View History

2018-05-09 17:53:12 +00:00
{% extends "base" %}
{% import "macros" as macros %}
2018-05-09 17:53:12 +00:00
{% block title %}
2018-06-12 12:42:34 +00:00
{% if user.display_name %}
{% set name = user.display_name %}
{% else %}
{% set name = user.username %}
{% endif %}
2018-06-12 12:45:53 +00:00
{{ name }}
2018-05-09 17:53:12 +00:00
{% endblock title %}
{% block content %}
<div>
<h1>
{{ name }}
{% if user.is_admin %}
2018-06-17 15:26:15 +00:00
<span class="badge">{{ "Admin" | _ }}</span>
{% endif %}
{% if is_self %}
2018-06-17 15:26:15 +00:00
<span class="badge">{{ "It is you" | _ }}</span>
{% endif %}
</h1>
{% if is_self %}
2018-06-17 15:26:15 +00:00
<a href="edit" class="button inline-block">{{ "Edit your profile" | _ }}</a>
{% endif %}
{% if is_remote %}
2018-06-17 15:26:15 +00:00
<a class="inline-block button" href="{{ user.ap_url }}">{{ "Open on {{ instance_url }}" | _(instance_url=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 %}
2018-06-17 15:26:15 +00:00
<a href="follow/" class="inline-block button">{{ "Follow" | _ }}</a>
2018-06-13 18:06:14 +00:00
{% else %}
2018-06-17 15:26:15 +00:00
<a href="follow/" class="inline-block button">{{ "Unfollow" | _ }}</a>
2018-06-13 18:06:14 +00:00
{% endif %}
2018-06-13 17:52:26 +00:00
{% endif %}
</div>
<div>
<a href="followers/">{{ "{{ count }} followers" | _n(singular="One follower", count=n_followers) }}</a>
</div>
<div>
2018-06-11 14:05:18 +00:00
{{ user.summary | safe }}
</div>
{% if recents | length != 0 %}
2018-06-17 15:26:15 +00:00
<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
{% if reshares | length != 0 %}
2018-06-17 15:26:15 +00:00
<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 %}