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
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ user.display_name }}
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-12 16:55:25 +00:00
|
|
|
<div>
|
|
|
|
<h1>
|
|
|
|
{{ user.display_name }}
|
|
|
|
{% 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 %}
|
|
|
|
</div>
|
2018-05-12 13:31:09 +00:00
|
|
|
|
2018-05-13 11:53:58 +00:00
|
|
|
<div>
|
|
|
|
<a href="followers">{{ n_followers }} follower{{ n_followers | pluralize }}</a>
|
|
|
|
</div>
|
|
|
|
|
2018-05-12 13:31:09 +00:00
|
|
|
<div>
|
2018-06-10 19:56:55 +00:00
|
|
|
{{ user.summary }}
|
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 %}
|