[% USE T8 %] [% USE HTML %] [% USE L %]

[% 'New filter for tax accounts' | $T8 %]

[% 'From this version on a new feature is available.' | $T8 %]

[% 'You can choose account categories for taxes. Depending on these categories taxes will be displayed for transfers in the general ledger or not.' | $T8 %]

[% 'If you have not chosen for example the category revenue for a tax and you choose an revenue account to create a transfer in the general ledger, this tax will not be displayed in the tax dropdown.' | $T8 %]

[% 'This feature especially prevents mistakes by mixing up prior tax and sales tax.' | $T8 %]

[% 'Please choose for which categories the taxes should be displayed (otherwise remove the ticks):' | $T8 %]

[% SET row_odd = '1' %][% FOREACH row = PARTS %] [% SET rowcount = loop.count %] [% END %]
[% 'Taxkey' | $T8 %] [% 'Description' | $T8 %] [% 'Tax rate' | $T8 %] [% 'Asset' | $T8 %] (A) [% 'Liability' | $T8 %] (L) [% 'Equity' | $T8 %] (Q) [% 'Costs' | $T8 %] (C) [% 'Revenue' | $T8 %] (I) [% 'Expense' | $T8 %] (E)
[% HTML.escape(row.taxkey) %] [% HTML.escape(row.taxdescription) %] [% HTML.escape(row.rate) %] % [% L.checkbox_tag('asset_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %] [% L.checkbox_tag('liability_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %] [% L.checkbox_tag('equity_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %] [% L.checkbox_tag('costs_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %] [% L.checkbox_tag('revenue_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %] [% L.checkbox_tag('expense_' _ loop.count, value => 1, checked => 1, class => 'checkbox') %]