kivitendo/templates/webpages/ic/makemodel.html @ b922ab4c
dfee9199 | Sven Schöling | [%- USE T8 %]
|
||
602a4d98 | Moritz Bunkus | [%- USE HTML %]
|
||
[%- USE LxERP %]
|
||||
<tr>
|
||||
<td>
|
||||
4bbf708c | Geoffrey Richardson | <table>
|
||
602a4d98 | Moritz Bunkus | <tr>
|
||
dfee9199 | Sven Schöling | <th class="listheading">[% 'Make' | $T8 %]</th>
|
||
<th class="listheading">[% 'Model' | $T8 %]</th>
|
||||
85ffde7a | Holger Lindemann | <th class="listheading">[% 'Last Cost' | $T8 %]</th>
|
||
<th class="listheading">[% 'Updated' | $T8 %]</th>
|
||||
<th class="listheading">[% 'order' | $T8 %]</th>
|
||||
602a4d98 | Moritz Bunkus | </tr>
|
||
[%- FOREACH row = MM_DATA %]
|
||||
<tr>
|
||||
4bbf708c | Geoffrey Richardson | <td>
|
||
[%- INCLUDE generic/multibox.html
|
||||
name = "make_$loop.count",
|
||||
default = row.make,
|
||||
DATA = ALL_VENDORS,
|
||||
show_empty = 1,
|
||||
label_key = 'name',
|
||||
id_key = 'id',
|
||||
-%]
|
||||
</td>
|
||||
<td><input name="model_[% loop.count %]" size="30" value="[% HTML.escape(row.model) %]"></td>
|
||||
78425410 | Niclas Zimmermann | <td><input type="hidden" name="old_lastcost_[% loop.count %]" value="[% LxERP.format_amount(row.lastcost, 2) %]">
|
||
<input name="lastcost_[% loop.count %]" size="10" value="[% LxERP.format_amount(row.lastcost, 2) %]"></td>
|
||||
85ffde7a | Holger Lindemann | <td><input name="lastupdate_[% loop.count %]" size="10" value="[% HTML.escape(row.lastupdate) %]"></td>
|
||
<td><input name="sortorder_[% loop.count %]" size="3" value="[% HTML.escape(row.sortorder) %]"></td>
|
||||
602a4d98 | Moritz Bunkus | </tr>
|
||
[%- END %]
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
4bbf708c | Geoffrey Richardson | <input type="hidden" name="makemodel_rows" value="[% mm_rows %]">
|