{% extends 'pybb/base.html' %} {% load pybb_tags %} {% block breadcrumb %} {% pybb_get_profile target_user as target_profile %} {% include "pybb/breadcrumb.html" with object=target_profile extra_crumb=_('Posts') %} {% endblock %} {% block title %} {% pybb_get_profile target_user as target_profile %} {% trans "All posts created by" %} {{ target_profile.get_display_name }} {% endblock %} {% block content %} {% pybb_get_profile target_user as target_profile %}

{% trans "All posts created by" %} {{ target_profile.get_display_name }}

{% include "pybb/pagination.html" %} {% for post in object_list %} {% cycle 'odd' 'even' as rowcolors silent %} {% include "pybb/post_template.html" with topic=post.topic %} {% endfor %} {% include "pybb/pagination.html" %}
{% endblock %}