% if report.till_removals:

${ _("Till Removals") }

<% out_sum = 0 %> % for operation in report.till_removals: <% out_sum += operation.value %> % endfor
${ _("Code") } ${ _("Description") } ${ _("Removed Value") }
${ operation.identifier } ${ operation.description } ${ format_price(operation.value) }
Total: ${ format_price(out_sum) }
% endif