Warendialog -> Preisgruppen in Template ausgelagert.
[kivitendo-erp.git] / templates / webpages / ic / price_row_de.html
1 [%- USE HTML %]
2 [%- IF PRICES.count %]
3   <tr>
4     <td>
5       <table width=100%>
6         <tr>
7           <th class="listheading">Preisgruppe</th>
8           <th class="listheading">Preis</th>
9         </tr>
10 [%- FOREACH row = PRICES %]
11         <tr>
12           <td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30  value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
13           <td width=50%><input name="price_[% loop.count %]" size=11 value="[% HTML.escape(row.price) %]"></td>
14           <input type=hidden name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.pricegroup_id) %]">
15         </tr>
16 [%- END %]
17       </table>
18     </td>
19   </tr>
20 [%- END %]