]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/reclamation_reason/list.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / reclamation_reason / list.html
1 [%- USE HTML -%][%- USE LxERP -%][%- USE L -%][%- USE T8 -%]
2 [%- INCLUDE 'common/flash.html' %]
3
4 <h1>[% title %]</h1>
5
6 <div class="wrapper" id="wrapper-1">
7  <table id="partsgroup_list" class="tbl-list">
8   <thead>
9    <tr>
10     <th>[% 'Reclamation Reason' | $T8 %]</th>
11     <th>[% 'Description' | $T8 %]</th>
12     <th>[% 'Valid for Sales' | $T8 %]</th>
13     <th>[% 'Valid for Purchase' | $T8 %]</th>
14    </tr>
15   </thead>
16
17   <tbody>
18     [%- FOREACH reason = RECLAMATION_REASONS %]
19     <tr id="reason_id_[% reason.id %]">
20     <td><a href="[% SELF.url_for(action='edit', id=reason.id) %]">[% HTML.escape(reason.name) %]
21 [% # reason.level %]</a></td>
22     <td>[% reason.description | html %]</td>
23     <td>[% reason.valid_for_sales_as_bool_yn %]</td>
24     <td>[% reason.valid_for_purchase_as_bool_yn %]</td>
25    [%- END %]
26   </tbody>
27  </table>
28 </div>