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

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

Ticket #1726 - Adicionado mobile com todas as alteracoes realizadas

Line 
1<form method="POST" action="{form_action}">
2<div id="cc_pref_cards" style="width: 100%; border: 0px solid black">
3        <table align="center" style="width: 400px">
4                <tr class="th">
5                        <td style="text-align: center; font-weight: bold">{lang_Option}</td>
6                        <td style="text-align: center; font-weight: bold">{lang_Value}</td>
7                </tr>
8                <tr class="row_off">
9                        <td width="70%">{lang_download_attachs}</td>
10                        <td>
11                                <select name="download_attach" style="width: 100px">
12                                <option {download_attach_option_No_selected} value="0">{lang_No}</option>
13                                <option {download_attach_option_Yes_selected} value="1">{lang_Yes}</option>
14                                </select>
15                        </td>
16                </tr>
17                <tr class="row_on">
18                        <td width="70%">{lang_What_is_the_maximum_number_of_messages_per_page?}</td>
19                        <td>
20                                <select name="max_message_per_page" style="width: 100px">
21                                <option {max_message_per_page_5_selected} value="5">5</option>
22                                <option {max_message_per_page_10_selected} value="10">10</option>
23                                <option {max_message_per_page_15_selected} value="15">15</option>
24                                </select>
25                        </td>
26                </tr>
27                                <tr>
28                        <td></td>
29                        <td style="text-align: right;">
30                                <input type="submit" name="save" value="{lang_Save}">
31                                <input type="button" name="cancel" value="{lang_Cancel}" onclick="window.back()">
32                        </td>
33                </tr>
34        </table>
35        <br>
36</div>
37</form>
Note: See TracBrowser for help on using the repository browser.