* add the_mgts room edit templates.
[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         <table class="altern" border="0" cellpadding="5">
5                 <tr class="even">
6                         <th><?_("Remote host")></th>
7                         <th><?_("User name")></th>
8                         <th><?_("Password")></th>
9                         <th><?_("Keep messages on server?")></th>
10                         <th><?_("Interval")></th>
11                         <th>&nbsp;</th>
12                 </tr>
13                 <?ITERATE("ITERATE:THISROOM:GNET", ="pop3client_removal", 0, 0, -1, #"pop3client")>
14                 <form method="post" action="netedit">
15                         <tr>
16                                 <input type="hidden" name="tab" value="feeds" />
17                                 <input type="hidden" name="prefix" value="pop3client|" />
18                                 <input type="hidden" name="nonce" value="<?NONCE>">
19                                 <td><input type="text" id="add_as_pop3host" name="line_pop3host" /></td>
20                                 <td><input type="text" id="add_as_pop3user" name="line_pop3user" /></td>
21                                 <td><input type="password" id="add_as_pop3pass" name="line_pop3pass" /></td>
22                                 <td><input type="checkbox" id="add_as_pop3keep" name="line_pop3keep" value="1" /></td>
23                                 <td><input type="text" id="add_as_pop3int" name="line_pop3int" maxlength="5" /></td>
24                                 <td><input type="submit" name="add_button" value="<?_("Add")>" /></td>
25                         </tr>
26                 </form>
27         </table>
28         <hr>
29         <i><?_("Fetch the following RSS feeds and store them in this room:")></i>
30         <br />
31         <table class="altern" border="0" cellpadding="5">
32                 <tr class="even">
33                         <th>
34                                 <img src="static/rss_16x.png" width="16" height="16" alt=" " /> 
35                                 <?_("Feed URL")>
36                         </th>
37                         <th></th>
38                 </tr>
39                 <?ITERATE("ITERATE:THISROOM:GNET", ="rssclient_removal", 0, 0, -1, #"rssclient")>
40                 <form method="post" action="netedit">
41                         <tr>
42                                 <input type="hidden" name="tab" value="feeds" />
43                                 <input type="hidden" name="prefix" value="rssclient|" />
44                                 <input type="hidden" name="nonce" value="<?NONCE>" />
45                                 <td><input type="text" id="add_as_pop3host" size="72" "maxlength="256" name="line_pop3host" /></td>
46                                 <td><input type="submit" name="add_button" value="<?_("Add")>" /></td>
47                         </tr>
48                 </form>
49         </table>
50 </div>
51