Added 'go' as hidden input fields to all of the forms in the room editor
[citadel.git] / webcit / static / t / room / edit / tab_feed.html
1 <div class="tabcontent">
2         <i><?_("Retrieve messages from these remote POP3 accounts and store them in this room:")></i>
3         <br />
4         <form method="post" action="netedit">
5 <p>
6         <input type="hidden" name="last_tabsel" value="<?TAB:N>" />
7         <input type="hidden" name="prefix" value="pop3client|" />
8         <input type="hidden" name="nonce" value="<?NONCE>">
9         <input type="hidden" name="go" value="<?ROOM:INFO:PRINT_NAME("X")>">
10 </p>
11         <table class="altern" border="0" cellpadding="5">
12                 <tr class="even">
13                         <th><?_("Remote host")></th>
14                         <th><?_("User name")></th>
15                         <th><?_("Password")></th>
16                         <th><?_("Keep messages on server?")></th>
17                         <th><?_("Interval")></th>
18                         <th>&nbsp;</th>
19                 </tr>
20                 <?ITERATE("ITERATE:THISROOM:GNET", ="room_edit_pop3client_removal", 0, 0, -1, #"pop3client")>
21                         <tr>
22                                 <td><input type="text" id="add_as_pop3host" name="line_pop3host" /></td>
23                                 <td><input type="text" id="add_as_pop3user" name="line_pop3user" /></td>
24                                 <td><input type="password" id="add_as_pop3pass" name="line_pop3pass" /></td>
25                                 <td><input type="checkbox" id="add_as_pop3keep" name="line_pop3keep" value="1" /></td>
26                                 <td><input type="text" id="add_as_pop3int" name="line_pop3int" maxlength="5" /></td>
27                                 <td><input type="submit" name="add_button" value="<?_("Add")>" /></td>
28                         </tr>
29         </table>
30         </form>
31         <hr>
32         <i><?_("Fetch the following RSS feeds and store them in this room:")></i>
33         <br />
34         <form method="post" action="netedit">
35 <p>
36         <input type="hidden" name="last_tabsel" value="<?TAB:N>" />
37         <input type="hidden" name="prefix" value="rssclient|" />
38         <input type="hidden" name="nonce" value="<?NONCE>" />
39         <input type="hidden" name="go" value="<?ROOM:INFO:PRINT_NAME("X")>">
40 </p>
41         <table class="altern" border="0" cellpadding="5">
42                 <tr class="even">
43                         <th>
44                                 <img src="static/webcit_icons/essen/16x16/rss.png" alt=" " /> 
45                                 <?_("Feed URL")>
46                         </th>
47                         <th></th>
48                 </tr>
49                 <?ITERATE("ITERATE:THISROOM:GNET", ="room_edit_rssclient_removal", 0, 0, -1, #"rssclient")>
50                         <tr>
51                                 <td><input type="text" id="add_as_rssclient" size="72" maxlength="256" name="line_pop3host" /></td>
52                                 <td><input type="submit" name="add_button" value="<?_("Add")>" /></td>
53                         </tr>
54         </table>
55         </form>
56 </div>
57