{% extends "hyperkitty/user_profile/base.html" %} {% load i18n %} {% load hk_generic %} {% load pagination %} {% block user_profile_content %}

{% trans "Last posts" %}

{% if last_posts %} {% for message in last_posts %} {% with mlist=message.mailinglist thread=message.thread votes=message.get_votes %} {% endwith %} {% endfor %} {% paginator last_posts qsprefix="lp" bydate=True %} {% else %}

{% trans "No posts yet." %}

{% endif %} {% endblock %}