]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Calendar/tpls/settings.tpl
Release 6.4.0
[Github/sugarcrm.git] / modules / Calendar / tpls / settings.tpl
1 {*
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 *}
38 <div id="settings_dialog" style="width: 340px; display: none;">
39         <div class="hd">{$MOD.LBL_SETTINGS_TITLE}</div>
40         <div class="bd">
41         <form name="settings" id="form_settings" method="POST" action="index.php?module=Calendar&action=SaveSettings">
42                 <input type="hidden" name="view" value="{$view}">
43                 <input type="hidden" name="day" value="{$day}">
44                 <input type="hidden" name="month" value="{$month}">
45                 <input type="hidden" name="year" value="{$year}">
46                 
47                 <table class='edit view tabForm'>
48                                 <tr>
49                                         <td scope="row" valign="top">
50                                                 {$MOD.LBL_SETTINGS_TIME_STARTS}
51                                         </td>
52                                         <td>
53                                                 <div id="d_start_time_section">
54                                                         <select size="1" id="day_start_hours" name="day_start_hours" tabindex="102">
55                                                                 {$TIME_START_HOUR_OPTIONS}
56                                                         </select>&nbsp;:
57                                                         
58                                                         <select size="1" id="day_start_minutes" name="day_start_minutes"  tabindex="102">
59                                                                 {$TIME_START_MINUTES_OPTIONS}
60                                                         </select>
61                                                                 &nbsp;
62                                                         {$TIME_START_MERIDIEM}
63                                                 </div>
64                                         </td>
65                                 </tr>
66                                 <tr>
67                                         <td scope="row" valign="top">
68                                                 {$MOD.LBL_SETTINGS_TIME_ENDS}
69                                         </td>
70                                         <td>
71                                                 <div id="d_end_time_section">
72                                                         <select size="1" id="day_end_hours" name="day_end_hours" tabindex="102">
73                                                                 {$TIME_END_HOUR_OPTIONS}
74                                                         </select>&nbsp;:
75                                                         
76                                                         <select size="1" id="day_end_minutes" name="day_end_minutes"  tabindex="102">
77                                                                 {$TIME_END_MINUTES_OPTIONS}
78                                                         </select>
79                                                                 &nbsp;
80                                                         {$TIME_END_MERIDIEM}
81                                                 </div>
82                                         </td>
83                                 </tr>
84                                 <tr>
85                                         <td scope="row" valign="top">
86                                                 {$MOD.LBL_SETTINGS_CALLS_SHOW}
87                                         </td>
88                                         <td>    
89                                                 <select size="1" name="show_calls" tabindex="102">
90                                                         <option value='' {if !$show_calls}selected{/if}>{$MOD.LBL_NO}</option>
91                                                         <option value='true' {if $show_calls}selected{/if}>{$MOD.LBL_YES}</option>                                                              
92                                                 </select>
93                                         </td>
94                                 </tr>
95                                 <tr>
96                                         <td scope="row" valign="top">
97                                                 {$MOD.LBL_SETTINGS_TASKS_SHOW}
98                                         </td>
99                                         <td>    
100                                                 <select size="1" name="show_tasks" tabindex="102">
101                                                         <option value='' {if !$show_tasks}selected{/if}>{$MOD.LBL_NO}</option>
102                                                         <option value='true' {if $show_tasks}selected{/if}>{$MOD.LBL_YES}</option>                                                              
103                                                 </select>
104                                         </td>
105                                 </tr>
106                 </table>
107         </form>
108         
109         
110         <div style="text-align: right;">
111                 <button id="btn-save-settings" class="button" type="button">{$MOD.LBL_APPLY_BUTTON}</button>&nbsp;
112                 <button id="btn-cancel-settings" class="button" type="button">{$MOD.LBL_CANCEL_BUTTON}</button>&nbsp;
113         </div>
114         </div>
115 </div>