{% extends 'layout/base.html' %} {% from '_includes.html' import render_comment with context %} {% block content %}

{{ user.username }}

{% if user.biography %}

{{ user.biography }}

{% endif %}
Joined: {{ user.created.date() }}
User level: {{ user.op_level.name.capitalize() }}

Statistics

Uploaded posts: {{ post_count }}
{% if user.is_moderator %}
Approved posts: {{ approved_count }}
{% endif %}
Posted comments: {{ comment_count }}
{% if user.tag_blacklist %}

Tag blacklist

{% for tag in user.tag_blacklist %} {{ tag.content_deser }} {##} {% endfor %}
{% endif %}

Last comments

{% for comment in comments %} {{ render_comment(comment, comment.editform, comment_link="{}#comment-{}".format(url_for('post.post_show', id=comment.post_id), comment.id) ) }} {% endfor %} {% if not comments %}

No comments so far.

{% endif %}
{% endblock %}