File: invoice.htm

package info (click to toggle)
tinymce2 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 3,192 kB
  • ctags: 1,107
  • sloc: makefile: 59; sh: 7
file content (26 lines) | stat: -rw-r--r-- 750 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- 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>