source: branches/2.2.0.1/mobile/templates/default/home_index.tpl @ 4246

Revision 4246, 3.4 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1726 - Adicionado mobile com todas as alteracoes realizadas

Line 
1<!-- BEGIN page -->
2<html>
3<head>
4<meta http-equiv="Content-Language" content="pt-BR" />
5<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
6<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
7<link rel="apple-touch-icon-precomposed" href="./templates/default/images/favicon.png"/>
8<meta name="apple-mobile-web-app-status-bar-style" content="black" />
9<link rel="apple-touch-icon" href="./templates/default/images/favicon.png" />
10<link rel="icon" href="./templates/default/images/favicon.png" type="image/x-ico" />
11<meta name="apple-touch-fullscreen" content="YES" />
12<script type="text/javascript">
13
14function expand_folders() {
15        var box = document.getElementById("personal_folder_box");
16        box.style.display = (box.style.display == "none") ? "block" : "none";
17}
18
19</script>
20
21<form method="post" action="index.php?menuaction=mobile.ui_home.search" id="form_busca">
22        {search}
23       
24        <div class="menu-contexto">
25                &nbsp;&nbsp;{lang_new_mail}:
26                <button name="email" class="btn-contexto" type="button" onclick='window.location="index.php?menuaction=mobile.ui_mobilemail.new_msg&type=clk"'>{lang_context_email}</button>
27                <button name="contato" class="btn-contexto" type="button" onclick='window.location="index.php?menuaction=mobile.ui_mobilecc.contact_add_edit"'>{lang_context_contact}</button>
28        </div>
29       
30        <dl id="lista_miolo">
31                <dd style="margin: 0; padding: 0">
32                        <div class="resultado-titulo">
33                                <label>
34                                        <input type="checkbox" name="default_folders" value='1' id="search_default_folders" />
35                                        <span class="email-item">
36                                                {lang_my_mail}
37                                        </span>
38                                </label>
39                                <div class="rotulo-complementar">{quota_percent}% [{quota_used}/{quota_limit}]</div>
40                        </div>
41                </dd>
42                {default_folders_box}
43                <dd>
44                <div class="limpar_div resultado-titulo">
45                        <label>
46                                <input type="checkbox" name="personal_folders" value='1' id="search_personal_folders"/>
47                                <a href="javascript:expand_folders()" class="email-item" style="font-size:12pt;">
48                                        {lang_my_folders}
49                                </a>
50                        </label>
51                </div>
52                </dd>
53                <span id="personal_folder_box" style="display: none;">
54                        {personal_folders_box}
55                </span>         
56                <dd>
57                        <div class="limpar_div resultado-titulo">
58                                <label>
59                                        <input type="checkbox" name="calendar_search" value='1' id="search_calendar_search">
60                                                <a href="index.php?menuaction=mobile.ui_mobilecalendar.index" class="email-item" style="font-size:12pt;">
61                                                        {lang_my_commitments}
62                                                </a>
63                                </label>
64                        </div>
65                </dd>
66                {commitments_box}
67                <dd>
68                <div class="limpar_div resultado-titulo">
69                        <label>
70                                <input type="checkbox" name="contacts_search" value='1' id="search_contacts_search">
71                                <a href="index.php?menuaction=mobile.ui_mobilecc.init_cc" class="email-item" style="font-size:12pt;"> {lang_my_contacts} </a>
72                        </label>
73                </div>
74                </dd>
75        </dl>
76</form>
77</body>
78</html>
79<!-- END page -->
80<!-- BEGIN folder_block -->
81<dd class="{folder_class}" style="clear:both">
82        <a href="index.php?menuaction=mobile.ui_mobilemail.change_folder&folder={folder_id}">
83                <div class="nome-item"><span>{folder_name}</span></div>
84        </a>
85        <div class="contagem">[{folder_unseen}/{folder_total_msg}]</div>
86</dd>
87<!-- END folder_block -->
88<!-- BEGIN commitment_block -->
89<p class="{commitment_class} espacamento"><strong>{commitment_time}</strong> {commitment_title}</p>
90<!-- END commitment_block -->
Note: See TracBrowser for help on using the repository browser.