c6b2560eb0
And clean up models functions a bit
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
{% extends "base" %}
|
|
|
|
{% block title %}
|
|
{{ user.display_name }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
|
|
<div>
|
|
<a href="followers">{{ n_followers }} follower{{ n_followers | pluralize }}</a>
|
|
</div>
|
|
|
|
<div>
|
|
{{ user.summary | safe }}
|
|
</div>
|
|
|
|
<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 %}
|
|
{% endblock content %}
|