Revision 26dc1352
Von Cem Aydin vor fast 2 Jahren hinzugefügt
templates/design40_webpages/custom_data_export_designer/edit.html | ||
---|---|---|
2 | 2 |
|
3 | 3 |
<h1>[% FORM.title %] — [% LxERP.t8("Step #1/#2", 1, 2) %] — [% LxERP.t8("Basic Data") %]</h1> |
4 | 4 |
<div class="wrapper"> |
5 |
[%- INCLUDE 'common/flash.html' %]
|
|
5 |
[% INCLUDE 'common/flash.html' %] |
|
6 | 6 |
|
7 | 7 |
<form method="post" action="controller.pl" id="form"> |
8 | 8 |
[% L.hidden_tag("id", SELF.query.id) %] |
9 | 9 |
<div class="input-panel control-panel"> |
10 | 10 |
<table class="tbl-horizontal wi-moderate"> |
11 | 11 |
<tr> |
12 |
<th align="right">[%- LxERP.t8("Name") %]</th>
|
|
12 |
<th>[% LxERP.t8("Name") %]</th>
|
|
13 | 13 |
<td>[% L.input_tag("query.name", SELF.query.name, style="width: 800px", "data-validate"="required") %]</td> |
14 | 14 |
</tr> |
15 |
|
|
16 | 15 |
<tr> |
17 |
<th align="right">[%- LxERP.t8("Required access right") %]</th>
|
|
16 |
<th>[% LxERP.t8("Required access right") %]</th>
|
|
18 | 17 |
<td>[% L.select_tag("query.access_right", SELF.access_rights, default=SELF.query.access_right, style="width: 800px") %]</td> |
19 | 18 |
</tr> |
20 |
|
|
21 | 19 |
<tr> |
22 |
<th valign="top" align="right">[%- LxERP.t8("Description") %]</th>
|
|
23 |
<td valign="top">[% L.textarea_tag("query.description", SELF.query.description, rows=5, style="width: 800px") %]</td>
|
|
20 |
<th>[% LxERP.t8("Description") %]</th>
|
|
21 |
<td>[% L.textarea_tag("query.description", SELF.query.description, rows=5, style="width: 800px") %]</td> |
|
24 | 22 |
</tr> |
25 |
|
|
26 | 23 |
<tr> |
27 |
<th valign="top" align="right">[%- LxERP.t8("SQL query") %]</th>
|
|
28 |
<td valign="top">[% L.textarea_tag("query.sql_query", SELF.query.sql_query, rows=20, style="width: 800px", "data-validate"="required") %]</td>
|
|
24 |
<th>[% LxERP.t8("SQL query") %]</th>
|
|
25 |
<td>[% L.textarea_tag("query.sql_query", SELF.query.sql_query, rows=20, style="width: 800px", "data-validate"="required") %]</td> |
|
29 | 26 |
</tr> |
30 | 27 |
</table> |
31 | 28 |
</div> |
Auch abrufbar als: Unified diff
design40: Template custom_data_export_designer/edit.html bereinigt
- align/valign entfernt (Darstellung linksbündig, analog zu anderen Templates)
- Formatierung vereinheitlicht