* add the_mgts room edit templates.
[citadel.git] / webcit / static / t / room / edit / tab_access.html
1 <div class="tabcontent">
2         <table border="0" cellspacing="10">
3                 <tr valign="top">
4                         <td>
5                                 <?_("The users listed below have access to this room.  "
6                                 "To remove a user from the access list, select the user "
7                                 "name from the list and click 'Kick'.")>
8                                 <br /><br />
9                                 <center>
10                                         <form method="post" action="do_invt_kick">
11                                                 <input type="hidden" name="nonce" value="<?NONCE>" />
12                                                 <input type="hidden" name="tab" value="access" />
13                                                 <select name="username" size="10" style="width:100%">
14                                                         <?ITERATE("ITERATE:THISROOM:WHOK", ="username_list", 0, 0, -1, #"username")>
15                                                 </select>
16                                                 <br />
17                                                 <input type="submit" name="kick_button" value="<?_("Kick")" />
18                                         </form>
19                                 </center>
20                         </td>
21                         <td>
22                                 <?_("To grant another user access to this room, enter the "
23                                 "user name in the box below and click 'Invite'.")>
24                                 <br /><br />
25                                 <center>
26                                         <form method="post" action="do_invt_kick">
27                                                 <input type="hidden" name="tab" value="access" />
28                                                 <input type="hidden" name="nonce" value="<?NONCE>">
29                                                 <?_("Invite:"));
30                                                 <input type="text" name="username" id="username_id" style="width:100R"><br />"
31                                                 <input type="hidden" name="invite_button" value="Invite" />
32                                                 <input type="submit" value="<?_("Invite")>" />
33                                         </form>
34                                 </center>
35                                 <!-- Pop open an address book -- begin -->
36                                 <a href="javascript:PopOpenAddressBook('username_id|<?_("User")>');" title="<?_("Users")>">
37                                         <img align="middle" border="0" width="24" height="24" src="static/viewcontacts_24x.gif" />
38                                         &nbsp;<?_("Users")>
39                                 </a>
40                                 <!-- Pop open an address book -- end -->
41                         </td>
42                 </tr>
43         </table>
44 </div>