source: branches/2.2/preferences/templates/default/category_form.tpl @ 3739

Revision 3739, 1.5 KB checked in by niltonneto, 13 years ago (diff)

Ticket #1534 - Corrigido alinhamento dos botões salvar e cancelar em categorias.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1
2<!-- BEGIN form -->
3<br>
4<center>
5{message}<br>
6<table border="0" width="80%" cellspacing="2" cellpadding="2"> 
7<form name="form" action="{actionurl}" method="POST">
8        <tr bgcolor="{th_bg}">
9                <td colspan="2">{lang_parent}</td>
10                <td><select name="new_parent"><option value="">{lang_none}</option>{category_list}</select></td>
11        </tr>
12        <tr bgcolor="{row_on}">
13                <td colspan="2">{lang_name}</font></td>
14                <td><input name="cat_name" size="50" value="{cat_name}"></td>
15        </tr>
16        <tr bgcolor="{row_off}">
17                <td colspan="2">{lang_descr}</td>
18                <td colspan="2"><textarea name="cat_description" rows="4" cols="50" wrap="virtual">{cat_description}</textarea></td>
19        </tr>
20        <tr bgcolor="{row_on}">
21                <td colspan="2">{lang_access}</td>
22                <td colspan="2">{access}</td>
23        </tr>
24<!-- BEGINN data_row -->
25        <tr bgcolor="{tr_color}">
26                <td colspan="2">{lang_data}</td>
27                <td>{td_data}</td>
28        </tr>
29<!-- END data_row -->
30
31<!-- BEGIN add -->
32
33        <tr valign="bottom" height="50">
34                <td><input type="submit" name="save" value="{lang_save}"></form></td>
35                <form method="POST" action="{cancel_url}">
36                <td><input type="submit" name="cancel" value="{lang_cancel}"></form></td>
37        </tr>
38</table>
39</center>
40
41<!-- END add -->
42
43<!-- BEGIN edit -->
44
45        <tr valign="bottom" height="50">
46                <td>
47                        {hidden_vars}
48                        <input type="submit" name="save" value="{lang_save}"></form></td>
49                        <form method="POST" action="{cancel_url}">
50                <td>
51                        <input type="submit" name="cancel" value="{lang_cancel}"></form></td>
52                <td align="right">{delete}</td>
53        </tr>
54</table>
55</center>
56
57<!-- END edit -->
58
59<!-- END form -->
Note: See TracBrowser for help on using the repository browser.