source: trunk/expressoCalendar/templates/default/config.tpl @ 696

Revision 696, 1.9 KB checked in by niltonneto, 15 years ago (diff)

Implementação do desenvolvedor (amuller).

Line 
1<!-- BEGIN header -->
2<form method="POST" action="{action_url}">
3<table border="0" align="center">
4   <tr bgcolor="{th_bg}">
5    <td colspan="2"><font color="{th_text}">&nbsp;<b>{title}</b></font></td>
6   </tr>
7<!-- END header -->
8
9<!-- BEGIN body -->
10   <tr bgcolor="{row_on}">
11    <td colspan="2">&nbsp;</td>
12   </tr>
13
14   <tr bgcolor="{row_off}">
15    <td colspan="2"><b>{lang_Calendar_settings}</b></td>
16   </tr>
17   <tr bgcolor="{row_on}">
18    <td>{lang_Do_you_wish_to_autoload_calendar_holidays_files_dynamically?}</td>
19    <td>
20     <select name="newsettings[auto_load_holidays]">
21      <option value=""{selected_auto_load_holidays_False}>{lang_No}</option>
22      <option value="True"{selected_auto_load_holidays_True}>{lang_Yes}</option>
23     </select>
24    </td>
25   </tr>
26   <tr bgcolor="{row_off}">
27    <td>{lang_Location_to_autoload_from}:</td>
28    <td>
29     <select name="newsettings[holidays_url_path]">
30      <option value="localhost"{selected_holidays_url_path_localhost}>localhost</option>
31      <option value="http://www.phpgroupware.org/cal"{selected_holidays_url_path_http://www.phpgroupware.org/cal}>www.phpgroupware.org</option>
32     </select>
33     </td>
34     </tr>
35     <tr bgcolor="{row_on}">
36     <td>{lang_Do_you_want_to_cache_php_requests_in_javascript?}</td>
37     <td>
38     <select name="newsettings[expressoCalendar_enable_cache]">
39     <option value=""{selected_expressoCalendar_enable_cache_False}>{lang_No}</option>
40     <option value="True"{selected_expressoCalendar_enable_cache_True}>{lang_Yes}</option>
41     </select>
42     </td>
43     </tr>
44<!-- END body -->
45
46<!-- BEGIN footer -->
47  <tr bgcolor="{th_bg}">
48    <td colspan="2">
49&nbsp;
50    </td>
51  </tr>
52  <tr>
53    <td colspan="2" align="center">
54      <input type="submit" name="submit" value="{lang_submit}">
55      <input type="submit" name="cancel" value="{lang_cancel}">
56    </td>
57  </tr>
58</table>
59</form>
60<!-- END footer -->
Note: See TracBrowser for help on using the repository browser.