{% extends 'pybb/base.html' %} {% load custom_date %} {% load pagination_tags %} {% block title %} Posts by {{ this_user }} - {{ block.super }} {% endblock title %} {% block content_header %}

Posts by {{ this_user }}

{% endblock %} {% block content_main %}

{{ this_user }} has written {{ posts|length }} post{{ posts|length|pluralize }}.

{% autopaginate posts 30 %} {% paginate %} {% for post in posts %} {% endfor %}
Date Forum Topic Post{{ posts|length|pluralize }}
{{ post.created|custom_date:user }} {{ post.topic.forum }} {{ post.topic }} "{{ post.body_text|truncatechars:80 }}"
{% endblock %}