Added:
/wiki/pp_comment_count.wiki
=======================================
--- /dev/null
+++ /wiki/pp_comment_count.wiki Wed Feb 9 04:55:09 2011
@@ -0,0 +1,29 @@
+#summary To load this tag include {% load notificationtags %} at the top
of the html file.
+#sidebar TableOfContents
+
+= Custom Tag: `pp_comment_count` =
+====_Module: pirate_messges_====
+
+This template tag populates the namespace `pp_comment` with a integer
count value.
+
+==_Arguments and Parameters_==
+
+ * object: The Object we want a comment count for
+
+==_Return value_==
+
+ * `pp_comment.count`: number of comments
+
+==_Usage Notes_==
+ * *Assumptions*: None
+
+ * *Errors*: None
+
+==_Examples_==
+====Basic form====
+The following code will display the reputation integer.
+{{{
+ {% pp_comment_count object=request.object %}
+ {{ pp_comment.count }}
+ {% endpp_comment_count %}
+}}}