* add a way for the tabbed api to re-open the same tab on save again.
[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. To remove a user from the access list, select the user name from the list and click 'Kick'.")>
6                                 <br /><br />
7                                 <center>
8                                         <form method="post" action="do_invt_kick">
9                                                 <input type="hidden" name="nonce" value="<?NONCE>" />
10                                                 <input type="hidden" name="last_tabsel" value="<?TAB:N>" />
11                                                 <select name="username" size="10" style="width:100%">
12                                                         <?ITERATE("ITERATE:THISROOM:WHO_KNOWS", ="room_edit_username_list", 0, 0, -1)>
13                                                 </select>
14                                                 <br />
15                                                 <input type="submit" name="kick_button" value="<?_("Kick")>" />
16                                         </form>
17                                 </center>
18                         </td>
19                         <td>
20                                 <?_("To grant another user access to this room, enter the user name in the box below and click 'Invite'.")>
21                                 <br /><br />
22                                 <center>
23                                         <form method="post" action="do_invt_kick">
24                                                 <input type="hidden" name="last_tabsel" value="<?TAB:N>" />
25                                                 <input type="hidden" name="nonce" value="<?NONCE>">
26                                                 <?_("Invite:")>
27                                                 <input type="text" name="username" id="username_id" style="width:100R"><br />
28                                                 <input type="hidden" name="invite_button" value="Invite" />
29                                                 <input type="submit" value="<?_("Invite")>" />
30                                         </form>
31                                 </center>
32                                 <!-- Pop open an address book - begin -->
33                                 <a href="javascript:PopOpenAddressBook('username_id|<?_("User")>');" title="<?_("Users")>">
34                                         <img align="middle" border="0" width="24" height="24" alt="<?_("Addressbook Popup")>" src="static/viewcontacts_24x.gif" />
35                                         &nbsp;<?_("Users")>
36                                 </a>
37                                 <!-- Pop open an address book - end -->
38                         </td>
39                 </tr>
40         </table>
41 </div>