Browse Source

Added a missing br and fixed html formatting

pull/9/head
Loïc Faure-Lacroix 10 years ago
committed by Maxime Chambreuil
parent
commit
4920468bfc
  1. 10
      account_partner_aged_statement_webkit/report/partner_aged_statement.mako

10
account_partner_aged_statement_webkit/report/partner_aged_statement.mako

@ -55,7 +55,7 @@
<br> <br>
%for l in get_lines(data['form'], partner): %for l in get_lines(data['form'], partner):
%if l: %if l:
<table class=basic_table style="width: 100%;">
<table class="basic_table" style="width: 100%;">
<tr> <tr>
<th>${_('Not Due')}</th> <th>${_('Not Due')}</th>
<th>${_('0-30')}</th> <th>${_('0-30')}</th>
@ -83,7 +83,7 @@
%if getLines30(partner): %if getLines30(partner):
<br> <br>
<div class="total">${_('0-30')}</div> <div class="total">${_('0-30')}</div>
<table class=basic_table style="width: 100%;">
<table class="basic_table" style="width: 100%;">
<tr> <tr>
<th>${_('Date')}</th> <th>${_('Date')}</th>
<th>${_('Description')}</th> <th>${_('Description')}</th>
@ -111,7 +111,7 @@
%if getLines3060(partner): %if getLines3060(partner):
<br/> <br/>
<div class="total">${_('30-60')}</div> <div class="total">${_('30-60')}</div>
<table class=basic_table style="width: 100%;">
<table class="basic_table" style="width: 100%;">
<tr> <tr>
<th>${_('Date')}</th> <th>${_('Date')}</th>
<th>${_('Description')}</th> <th>${_('Description')}</th>
@ -136,10 +136,10 @@
%endfor ## for line in getLines3060(partner) %endfor ## for line in getLines3060(partner)
</table> </table>
%endif ## if getLines3060(partner) %endif ## if getLines3060(partner)
<br/>
%if getLines60(partner): %if getLines60(partner):
<br/>
<div class="total">${_('+60')}</div> <div class="total">${_('+60')}</div>
<table class=basic_table style="width: 100%;">
<table class="basic_table" style="width: 100%;">
<tr> <tr>
<th>${_('Date')}</th> <th>${_('Date')}</th>
<th>${_('Description')}</th> <th>${_('Description')}</th>

Loading…
Cancel
Save