Added:
/wiki/pp_notification_read_list_get.wiki
=======================================
--- /dev/null
+++ /wiki/pp_notification_read_list_get.wiki Wed Feb 9 04:40:17 2011
@@ -0,0 +1,34 @@
+#summary To load this tag include {% load notificationtags %} at the top
of the html file.
+#sidebar TableOfContents
+
+= Custom Tag: `pp_notification_read_list_get` =
+====_Module: pirate_messges_====
+
+This template tag populates the namespace `pp_messages` with a list of
messages that have been read.
+
+==_Arguments and Parameters_==
+
+ * user: the user we need notifications for
+
+==_Return value_==
+
+ * `pp_messages.notifications`: list of read Notification objects
+
+==_Usage Notes_==
+ * *Assumptions*: None
+
+ * *Errors*: None
+
+==_Examples_==
+====Basic form====
+The following code will display the reputation integer.
+{{{
+ {% pp_notification_read_list_get user=request.user %}
+ {% for note in pp_messages.notifications %}
+ {{note.receiver }}
+ {{note.sender }}
+ {{note.link }} #link to comment/issue/solution
+ {{note.text }} #textual description of notification
+ {% endfor %}
+ {% endpp_notification_unread_list_get %}
+}}}