source: branches/2.2/mobile/templates/default/cc_main.tpl @ 3571

Revision 3571, 2.8 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1408 - Modificado o layout da tela de enviar email do expresso mini.

Line 
1<!-- BEGIN body -->
2<h1>Contatos</h1>
3<hr /><br />
4<form action="index.php?menuaction=mobile.ui_mobilecc.contacts_list" method="post">
5
6<table border="0" width="250">
7        <tr>
8                <td width="70"><label for="name">{lang_name}:</label></td>
9                <td><input type="text" id="name" name="name" size="30"/></td>
10        </tr>   
11        <tr>
12                <td width="70"><label for="catalog">{lang_catalog}:</label></td>
13                <td>
14                        <select id="catalog" name="catalog">
15                                {options}
16                        </select>
17                </td>
18        </tr>   
19        <tr>
20                <td align="right" colspan="2"><input type="submit" value="{lang_search}"/></td>
21        </tr>   
22       
23</table>
24</form>
25<!-- TABELA PRINCIPAL DO RESULTADO DA BUSCA -->
26<table border="0" width="90%">
27                        <tr bgcolor="{th_theme}">
28                                {header}
29                        </tr>
30                                {rows}
31</table>
32<table border="0" width="45%">
33        <tr>
34                <td>
35                        {back}{pages}{next}
36                </td>
37        </tr>
38</table>
39<!-- FIM TABELA PRINCIPAL DO RESULTADO DA BUSCA -->
40<!-- END body -->
41
42<!-- BEGIN people_header -->
43                                <td width="40%" align="center">{lang_people_name}</td>
44                                <td width="20%" align="center">{lang_phone}</td>
45                                <td width="20%" align="center">{lang_mobile}</td>
46                                <td width="20%" align="center">{lang_mail}</td>
47<!-- END people_header -->
48
49<!-- BEGIN group_header -->
50                                <td width="60%" align="center">{lang_group_name}</td>
51                                <td width="20%" align="center">{lang_title}</td>
52<!-- END group_header -->
53
54<!-- BEGIN row -->
55<form id="cc_form" name="cc_form" method="POST" action="{form_action}">
56        <tr bgcolor="{tr_color}">
57                <td><a href="{form_action}&input_to={row_nome}&input_to_mail={row_email}&type=cc_mob">{row_nome}</a></td>
58                <td align="center">{row_telefone}</td>
59                <td align="center">{row_mobile}</td>
60                <td align="center">{row_email}</td>
61
62        </tr>
63                <input type="hidden" id="input_to" name="input_to" value="{row_nome}" style="display: none;"/>
64                <input type="hidden" id="input_to_mail" name="input_to_mail" value="{row_email}" style="display: none;"/>
65                <input type="hidden" id="input_subject" name="input_subject" value="" style="display: none;"/>
66                <input type="hidden" id="body" name="body" value="" style="display: none;"/>
67                <input type="hidden" id="cc_mob" name="cc_mob" value="1" style="display: none;"/>
68</form>
69<!-- END row -->
70
71<!-- BEGIN row_group -->
72        <tr bgcolor="{tr_color}">
73                <td>{row_group_name}</td>
74                <td align="center">{row_title}</td>
75        </tr>
76<!-- END row_group -->
77
78<!-- BEGIN row_empty -->
79        <tr>
80                <td align="center"><font color="red"><b>{message}</b></font></td>
81        </tr>
82<!-- END row_empty -->
83
84<!-- BEGIN option -->
85                <option value="{option_value}" {selected}>{option_text}</option>
86<!-- END option -->
87
88<!-- BEGIN page -->
89                <a href="index.php?menuaction=mobile.ui_mobilecc.contacts_list&page={num_page}">
90                {display_page}
91                </a>&nbsp;
92<!-- END page -->
93
94<!-- BEGIN page_no_link -->
95                {num_page}&nbsp;
96<!-- END page_no_link -->
Note: See TracBrowser for help on using the repository browser.