source: trunk/contactcenter/templates/default/preferences.tpl @ 1158

Revision 1158, 2.2 KB checked in by amuller, 15 years ago (diff)

Ticket #475 - Mudando o nome dos templates azul para default e celepar para classic

  • Property svn:executable set to *
Line 
1<!--
2        ContactCenter Preferences TPL File
3        Copyright (C) 2004 - Raphael Derosso Pereira
4        (raphaelpereira@users.sourceforge.net)
5       
6        This file is licensed under the terms of th GNU GPL
7        version 2 or above
8-->
9
10<form method="POST" action="{form_action}">
11<div id="cc_pref_cards" style="width: 100%; border: 0px solid black">
12        <p align="center" style="font-weight: bold; font-size: medium; border: 0px solid black">{lang_Cards_Visualization_Preferences}</p>
13        <table align="center" style="width: 400px">
14                <tr class="th">
15                        <td style="text-align: center; font-weight: bold">{lang_Option}</td>
16                        <td style="text-align: center; font-weight: bold">{lang_Value}</td>
17                </tr>
18                <tr class="row_off">
19                        <td>{lang_Default_Person_Email_Type}</td>
20                        <td>
21                                <select name="personCardEmail" style="width: 200px">
22                                        <option selected value="_NONE_">{lang_Choose_Email_Type...}</option>
23                                        {personCardEmail}
24                                </select>
25                        </td>
26                </tr>
27                <tr class="row_on">
28                        <td>{lang_Default_Person_Telephone_Type}</td>
29                        <td>
30                                <select name="personCardPhone" style="width: 200px">
31                                        <option selected value="_NONE_">{lang_Choose_Telephone_Type...}</option>
32                                        {personCardPhone}
33                                </select>
34                        </td>
35                </tr>
36                <tr>
37                        <td></td>
38                        <td style="text-align: right;">
39                                <input type="submit" name="save" value="{lang_Save}">
40                                <input type="button" name="cancel" value="{lang_Cancel}" onclick="window.back()">
41                        </td>
42                </tr>
43        </table>
44        <br>
45        <p align="center" style="font-weight: bold; font-size: medium; border: 0px solid black">{lang_Connector_Setup}</p>
46        <table align="center" style="width: 400px">
47                <tr class="th">
48                        <td style="text-align: center; font-weight: bold; width: 200px">{lang_Option}</td>
49                        <td style="text-align: center; font-weight: bold; width: 200px">{lang_Value}</td>
50                </tr>
51                <tr class="row_off">
52                        <td>{lang_Display_Connector_Client-Server_Status_Information?}</td>
53                        <td align="center">
54                                <input type="checkbox" name="displayConnector" {displayConnector} />
55                        </td>
56                </tr>
57                <tr>
58                        <td></td>
59                        <td style="text-align: right;">
60                                <input type="submit" name="save" value="{lang_Save}">
61                                <input type="button" name="cancel" value="{lang_Cancel}" onclick="window.back()">
62                        </td>
63                </tr>
64        </table>
65</div>
66</form>
Note: See TracBrowser for help on using the repository browser.