{% extends "sphene/community/admin/base.html" %} {% load i18n %} {% load sph_extras %} {% load sph_pagination %} {% load sphboard_extras %} {% block head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Back to users list" %}

{% blocktrans with author.username as username %}Posts submitted by user:{% endblocktrans %} {% sphboard_displayUserName author %}

{% trans "Delete all posts of this user" %} {% for post in post_list %} {% endfor %} {% if not post_list %} {% endif %}
{% trans "Subject" %} {% trans "Body" %} {% trans "Published" %} {% trans "Actions" %}
{% sph_truncate post.subject 30 "..." %} {% sph_truncate post.body 100 "..." %} {{ post.postdate|date:"Y-m-d H:i:s" }} {% trans "View" %} {% trans "Delete" %}
{% trans "User didn't publish any posts yet" %}

{% sph_pagination pages page %}

{% endblock %}