From 552582410df622d58da330ea712e83f1fa775c9b Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Sat, 30 Nov 2013 18:53:43 +0100 Subject: Don't use the search engine to display a user's posts --- hyperkitty/templates/user_posts.html | 77 ++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 hyperkitty/templates/user_posts.html (limited to 'hyperkitty/templates/user_posts.html') diff --git a/hyperkitty/templates/user_posts.html b/hyperkitty/templates/user_posts.html new file mode 100644 index 0000000..bd6a1a9 --- /dev/null +++ b/hyperkitty/templates/user_posts.html @@ -0,0 +1,77 @@ +{% extends "base.html" %} +{% load url from future %} +{% load gravatar %} +{% load hk_generic %} + + +{% block title %} +Messages by {{ fullname }}{% if mlist %} - {{ mlist.display_name|default:mlist.name|escapeemail }} {% endif %} - {{ app_name|title }} +{% endblock %} + +{% block content %} + +
+ +
+ +
+ + + + {% for message in messages %} + {% include "messages/summary_message.html" %} + {% empty %} +

Sorry no email could be found by this user.

+ {% endfor %} + + {% include "paginator.html" with pager=messages %} + +
+ +
+ +{% endblock %} + +{% block additionaljs %} + +{% endblock %} -- cgit