]> ruin.nu Git - ndwebbie.git/blobdiff - root/src/forum/thread.tt2
Possible to mark threads as unread
[ndwebbie.git] / root / src / forum / thread.tt2
index e08b4755cbf4425282056ec0ce0124135528f2fe..d2820580ffd06da3ce3da1c30de11a5d5942286c 100644 (file)
@@ -5,6 +5,10 @@
 <a href="[% c.uri_for('setSticky',thread.ftid, (thread.sticky ? 0 : 1)) %]">Make this thread [% thread.sticky ? 'unsticky' : 'sticky' %]</a>
 [% END %]
 
+[% IF c.user.id %]
+<a href="[% c.uri_for('markThreadAsUnread',thread.ftid) %]">Mark thread as unread</a>
+[% END %]
+
 [% createNewPostHr = 1 %]
 [% FOR post IN posts %]
        [% IF createNewPostHr AND post.unread%]
        [% END %]
 <fieldset class="forum-post">
 <legend class="forum-post-header"><b>[% post.username %]</b> : [% post.time %] </legend>
-       [% post.message %]
+<div class="forum-post-body">[% post.message %]</div>
 </fieldset>
 [% END %]
 
+[% IF c.user.id %]
+<a href="[% c.uri_for('markThreadAsUnread',thread.ftid) %]">Mark thread as unread</a>
+[% END %]
+
 [% IF thread.post %]
 <form action="[% c.uri_for('addPost',thread.ftid) %]#NewPosts" method="post"><fieldset class="forum-post"> <legend><a name="Reply">New Reply</a></legend>
-       <textarea rows="25" cols="60" name="message" id="replybox">[% previewMessage %]</textarea>
+       <textarea class="bbcode" rows="25" cols="60" name="message" id="replybox">[% previewMessage %]</textarea>
        <br>
        <input type="submit" name="cmd" value="Submit">
        <input type="submit" name="cmd" value="Preview">
@@ -91,4 +99,5 @@ $(document).ready(function(){
        });
 });
 </script>
+[% INCLUDE inc/markitup.tt2 %]
 [% END %]