2018-06-17 20:07:01 +00:00
|
|
|
<div class="user">
|
2018-09-03 14:03:25 +00:00
|
|
|
<div class="flex">
|
2018-09-03 13:59:02 +00:00
|
|
|
<img class="avatar medium" src="{{ user.avatar }}" alt="{{ "{{ name}}'s avatar'" | _(name=user.name) }}">
|
2018-09-03 11:17:59 +00:00
|
|
|
|
2018-09-03 14:03:25 +00:00
|
|
|
<h1 class="grow">
|
|
|
|
{{ user.name }}
|
2018-07-26 16:36:38 +00:00
|
|
|
|
2018-09-03 14:03:25 +00:00
|
|
|
<small>@{{ user.fqn }}</small>
|
2018-07-26 16:36:38 +00:00
|
|
|
|
2018-09-03 14:03:25 +00:00
|
|
|
{% if user.is_admin %}
|
|
|
|
<span class="badge">{{ "Admin" | _ }}</span>
|
|
|
|
{% endif %}
|
2018-09-03 11:17:59 +00:00
|
|
|
|
2018-09-03 14:03:25 +00:00
|
|
|
{% if is_self %}
|
|
|
|
<span class="badge">{{ "It is you" | _ }}</span>
|
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
</div>
|
2018-06-17 17:48:22 +00:00
|
|
|
|
|
|
|
{% if is_self %}
|
2018-06-21 23:17:22 +00:00
|
|
|
<a href="/@/{{ user.username }}/edit" class="button inline-block">{{ "Edit your profile" | _ }}</a>
|
2018-06-17 17:48:22 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if is_remote %}
|
2018-07-26 16:27:02 +00:00
|
|
|
<a class="inline-block button" href="{{ user.ap_url }}" target="_blank">{{ "Open on {{ instance_url }}" | _(instance_url=instance_url) }}</a>
|
2018-06-17 17:48:22 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2018-07-20 15:51:32 +00:00
|
|
|
{% set not_self = not is_self %}
|
|
|
|
{% if not_self and (account is defined) %}
|
2018-06-17 17:48:22 +00:00
|
|
|
{% if follows %}
|
2018-07-20 15:59:16 +00:00
|
|
|
<a href="/@/{{ user.fqn }}/follow/" class="inline-block button">{{ "Unfollow" | _ }}</a>
|
2018-07-20 15:51:32 +00:00
|
|
|
{% else %}
|
2018-07-20 15:59:16 +00:00
|
|
|
<a href="/@/{{ user.fqn }}/follow/" class="inline-block button">{{ "Follow" | _ }}</a>
|
2018-06-17 17:48:22 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
2018-07-26 17:00:23 +00:00
|
|
|
<a href="/@/{{ user.fqn }}/followers/">{{ "{{ count }} followers" | _n(singular="One follower", count=n_followers) }}</a>
|
2018-06-17 17:48:22 +00:00
|
|
|
</div>
|