2018-05-09 19:53:12 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ user.display_name }}
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-12 18:55:25 +02: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 15:31:09 +02:00
|
|
|
|
|
|
|
<div>
|
2018-05-12 18:55:25 +02:00
|
|
|
{{ user.summary | safe }}
|
2018-05-12 15:31:09 +02:00
|
|
|
</div>
|
2018-05-12 18:55:25 +02:00
|
|
|
|
|
|
|
<h2>Latest articles</h2>
|
|
|
|
{% for article in recents %}
|
|
|
|
<div>
|
|
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
|
|
|
<p>{{ article.post.content | escape | truncate(length=200) }}…</p>
|
|
|
|
<p>By {{ article.author.display_name }} ⋅ {{ article.date | date(format="%B %e") }}</p>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2018-05-09 19:53:12 +02:00
|
|
|
{% endblock content %}
|