@@ -23,6 +23,11 @@
<td>{{ detail.total }}€</td>
</tr>
{% endfor %}
+ <tr class="total">
+ <td colspan="2"></td>
+ <td><strong>Total</strong></td>
+ <td>{{ invoice.amount }}</td>
+ </tr>
</tbody>
</table>
@@ -140,3 +140,8 @@ table.full-width {
#invoice_details .period {
color:#999;
}
+
+#invoice_details tr.total>td {
+ font-weight:bold;
+ border-top:2px solid #DDD;
+}