Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 7fe80d13

Von Hans P. Schlaepfer vor etwa 4 Jahren hinzugefügt

  • ID 7fe80d13f11380f1f7bdc86e0a4795656163af36
  • Vorgänger 11caf383
  • Nachfolger f393022c

Neues Design 2019 Standard-Code templates/webpages/am/list_tax.html

Unterschiede anzeigen:

templates/webpages/am/list_tax.html
[%- USE T8 %]
[%- USE HTML %]
[% INCLUDE "common/flash.html" %]
<h1>[% title %]</h1>
<table>
<tr>
<th class="listheading">[% 'tax_taxkey' | $T8 %]</th>
<th class="listheading">[% 'tax_taxdescription' | $T8 %]</th>
<th class="listheading">[% 'tax_rate' | $T8 %]</th>
<th class="listheading">[% 'taxnumber' | $T8 %]</th>
<th class="listheading">[% 'account_description' | $T8 %]</th>
<th class="listheading">[% 'Automatic skonto chart sales' | $T8 %]</th>
<th class="listheading">[% 'Automatic skonto chart purchase' | $T8 %]</th>
</tr>
[% SET row_odd = '1' %][% FOREACH row = TAX %]
<tr class="listrow[% IF row_odd %]1[% SET row_odd = '0' %][% ELSE %]0[% SET row_odd = '1' %][% END %]">
<td align="right">[% HTML.escape(row.taxkey) %]</td>
<td><a href="am.pl?action=edit_tax&id=[% HTML.url(row.id) %]&callback=[% HTML.url(callback) %]">[% HTML.escape(row.taxdescription) %]</a></td>
<td align="right">[% HTML.escape(row.rate) %] %</td>
<td align="right">[% HTML.escape(row.taxnumber) %]</td>
<td>[% HTML.escape(row.account_description) %]</td>
<td>[% HTML.escape(row.skonto_chart_accno) %] [% HTML.escape(row.skonto_chart_description) %]</td>
<td>[% HTML.escape(row.skonto_chart_purchase_accno) %] [% HTML.escape(row.skonto_chart_purchase_description) %]</td>
</tr>
[% END %]
</table>
<h1>[% title %]</h1>
<div class="wrapper">
<table class="tbl-list width-moderate">
<thead>
<tr>
<th class="center">[% 'tax_taxkey' | $T8 %]</th>
<th>[% 'tax_taxdescription' | $T8 %]</th>
<th>[% 'tax_rate' | $T8 %]</th>
<th>[% 'taxnumber' | $T8 %]</th>
<th>[% 'account_description' | $T8 %]</th>
<th>[% 'Automatic skonto chart sales' | $T8 %]</th>
<th>[% 'Automatic skonto chart purchase' | $T8 %]</th>
</tr>
</thead>
<tbody>
[% SET row_odd = '1' %][% FOREACH row = TAX %]
<tr>
<td class="center">[% HTML.escape(row.taxkey) %]</td>
<td><a href="am.pl?action=edit_tax&id=[% HTML.url(row.id) %]&callback=[% HTML.url(callback) %]">[% HTML.escape(row.taxdescription) %]</a></td>
<td>[% HTML.escape(row.rate) %] %</td>
<td>[% HTML.escape(row.taxnumber) %]</td>
<td>[% HTML.escape(row.account_description) %]</td>
<td>[% HTML.escape(row.skonto_chart_accno) %] [% HTML.escape(row.skonto_chart_description) %]</td>
<td>[% HTML.escape(row.skonto_chart_purchase_accno) %] [% HTML.escape(row.skonto_chart_purchase_description) %]</td>
</tr>
[% END %]
</tbody>
</table>
</div>

Auch abrufbar als: Unified diff