source: branches/release-1_3/template/default/admin/configuration.vtp @ 329

Last change on this file since 329 was 329, checked in by gweltas, 20 years ago

CSS Admin creation

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1<!--VTP_errors-->
2<div class="errors">
3  <div class="errors_title">{#errors_title}</div>
4  <ul>
5    <!--VTP_li-->
6    <li>{#li}</li>
7    <!--/VTP_li-->
8  </ul>
9</div>
10<!--/VTP_errors-->
11<!--VTP_confirmation-->
12  <div class="info">{#conf_confirmation}</div>
13<!--/VTP_confirmation-->
14<form method="post" action="{#form_action}">
15  <table width="100%">
16    <!--VTP_line-->
17    <!--VTP_param_line-->
18    <tr>
19      <td>{#name}</td>
20      <td align="center">
21        <!--VTP_select-->
22        <select name="{#name}">
23          <!--VTP_option-->
24          <option{#selected}>{#option}</option>
25          <!--/VTP_option-->
26        </select>
27        <!--/VTP_select-->
28        <!--VTP_hidden-->
29        {#text}<input type="hidden" name="{#name}" value="{#value}" />
30        <!--/VTP_hidden-->
31        <!--VTP_text-->
32        <input type="text" name="{#name}" value="{#value}" />
33        <!--/VTP_text-->
34        <!--VTP_group-->
35          <!--VTP_radio-->
36          <input type="radio" name="{#name}" value="{#value}"{#checked}/>{#option}
37          <!--/VTP_radio-->
38        <!--/VTP_group-->
39        <!--VTP_check-->
40          <!--VTP_box-->
41          <input type="checkbox" name="{#name}" value="{#value}"{#checked}/>{#option}
42          <!--/VTP_box-->
43        <!--/VTP_check-->
44      </td>
45      <td width="50%" class="row2">{#def}</td>
46    </tr>
47    <!--/VTP_param_line-->
48    <!--VTP_title_line-->
49    <tr>
50      <th colspan="3">{#title}</th>
51    </tr>
52    <!--/VTP_title_line-->
53    <!--VTP_space_line-->
54    <tr>
55      <td colspan="3"><div style="margin-bottom:0px">&nbsp;</div></td>
56    </tr>
57    <!--/VTP_space_line-->
58    <!--/VTP_line-->
59    <!--VTP_remote_sites-->
60    <tr>
61      <th colspan="3" align="center">{#remote_site}</th>
62    </tr>
63    <tr>
64      <td colspan=3><div style='margin-bottom:0px'>&nbsp;</div></td>
65    </tr>
66    <tr>
67      <td>&nbsp;</td>
68      <td align="center">{#delete}</td>
69      <td>&nbsp;</td>
70    </tr>
71    <!--VTP_site-->
72    <tr>
73      <td>{#url}</td>
74      <td align="center"><input type="checkbox" name="delete_site_{#id}" value="1" /></td>
75      <!--VTP_rowspan--><td class="row2" rowspan="{#nb_sites}">{#conf_remote_site_delete_info}</td><!--/VTP_rowspan-->
76    </tr>
77    <!--/VTP_site-->
78    <tr>
79      <td colspan=3><div style='margin-bottom:0px'>&nbsp;</div></td>
80    </tr>
81    <!--/VTP_remote_sites-->
82    <tr>
83      <td colspan="3" align="center">
84        <input type="submit" name="submit" value="{#submit}">
85      </td>
86    </tr>
87  </table>
88</form>
Note: See TracBrowser for help on using the repository browser.