lingo: use <th> for invoice table header cells

This commit is contained in:
Frédéric Péters 2015-12-31 13:23:44 +01:00
parent 90763b64d2
commit df7763f374
1 changed files with 5 additions and 5 deletions

View File

@ -5,11 +5,11 @@
<table class="invoices">
<thead>
<tr>
<td>{% trans "Number" %}</td>
<td>{% trans "Label" %}</td>
<td>{% trans "Issue date" %}</td>
<td>{% trans "Payment limit date" %}</td>
<td>{% trans "Amount" %}</td>
<th>{% trans "Number" %}</th>
<th>{% trans "Label" %}</th>
<th>{% trans "Issue date" %}</th>
<th>{% trans "Payment limit date" %}</th>
<th>{% trans "Amount" %}</th>
<td></td>
</tr>
</thead>