{% extends 'lbforum/profile/base.html' %} {% load i18n %} {% load lbforum_filters %} {% load lbforum_tags %} {% load el_pagination_tags %} {% block title %} {% blocktrans %}{{ view_user.lbforum_profile }}'s posts{% endblocktrans %} {% endblock %} {% block content_content %} {% include 'lbforum/profile/inc_base_profile.html' %}
{% paginate posts %} {% get_pages %}
{% blocktrans %}Posts by{% endblocktrans %} {{ view_user.lbforum_profile }}
{% for post in posts %}
#{% page_item_idx pages forloop %} - {{ post.created_on|lbtimesince }}
{{ post.subject }}
{{ post.message|bbcode }}
{% endfor %}
{% show_pages %}
{% endblock %}