]> ruin.nu Git - ndwebbie.git/blobdiff - root/src/forum/thread.tt2
Sending private messages or threads.
[ndwebbie.git] / root / src / forum / thread.tt2
index 48fff18a431ae9a997c2d0d1a69a86c4e4cec31c..bd3a1be8d7aa66e1062351a6f60007ed12dd9974 100644 (file)
 [% END %]
 
 [% IF thread.post %]
-<form action="[% c.uri_for('addPost',thread.ftid) %]" method="post"><fieldset class="forum-post"> <legend>New Reply</legend>
+<form action="[% c.uri_for('addPost',thread.ftid) %]#NewPosts" method="post"><fieldset class="forum-post"> <legend>New Reply</legend>
        <textarea rows="25" cols="60" name="message">[% previewMessage %]</textarea>
        <br>
        <input type="submit" name="cmd" value="Submit">
        <input type="submit" name="cmd" value="Preview">
 </fieldset></form>
 [% END %]
+
+[% IF access.size > 0 %]
+[% hasaccess = 0 %]
+<p>The following ppl have access to this thread: [% FOR a IN access %]
+               [% IF a.uid == UID; hasaccess = 1; END %]
+[% a.username %]
+       [% END %]</p>
+       [% IF hasaccess %]
+       <p><a href="[% c.uri_for('removeownthreadaccess',thread.ftid) %]">Remove your access</a></p>
+       [% END %]
+[% END %]
+
+[% IF thread.moderate %]
+<form action="[% c.uri_for('postthreadaccess',thread.ftid) %]#NewPosts" method="post">
+<fieldset class="forum-post"> <legend>Change thread access</legend>
+<table>
+       <tr><th>Add</th><th>Remove</th></tr>
+       <tr>
+               <td><select name="uid" multiple size="5">
+       [% FOR u IN users %]
+                       <option value="[% u.uid %]">[% u.username %]</option>
+       [% END %]
+               </select></td>
+               <td><select name="access" multiple size="5">
+       [% FOR u IN access %]
+                       <option value="[% u.uid %]">[% u.username %]</option>
+       [% END %]
+               </select></td>
+       </tr>
+</table>
+<input type="submit" name="cmd" value="Change access">
+</fieldset></form>
+[% END %]