Koha/koha-tmpl/intranet-tmpl/prog/en/js/tinymce/examples/templates/invoice.htm
Galen Charlton a670f1817e bug 2509: fix file permissions
Following suggestion by Vincent Danjean for Debian
packaging, 0755 -> 0644 for non-executable
files.

Also removed shebang from a few modules in C4.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
2008-08-21 18:55:02 -05:00

26 lines
750 B
HTML

<!-- Template contents HTML outside the DIV will not be inserted -->
<div class="mceTmpl">
<h1>Invoice # [invoice number] </h1>
<p>
[Client details]
</p>
<h2>Invoice Items</h2>
<table class="invoice-items">
<thead>
<tr><th class="col1">Item</th><th class="col2">Qty</th><th class="col3">Unit Cost</th><th class="col4">Total</th></tr>
</thead>
<tbody>
<tr><td>Item Description</td><td>1</td><td>$0.00</td><td>$0.00</td></tr>
<tr><td>Item Description</td><td>1</td><td>$0.00</td><td>$0.00</td></tr>
<tr><td>Item Description</td><td>1</td><td>$0.00</td><td>$0.00</td></tr>
</tbody>
<tfoot>
<tr><td colspan="3">Invoice Total</td><td id="invoice-total"></td></tr>
</tfoot>
</table>
</div>