-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkomodo.html
71 lines (71 loc) · 1.98 KB
/
komodo.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<title>Komodo Template (Esfresco)</title>
<link rel="stylesheet" href="./css/komodo.css">
</head>
<body>
<header>
<h1 class="title">{{userCompany}}</h1>
<p>{{userAddress}}</p>
</header>
<div class="container">
<section class="info">
<div class="to">
<div class="left">
<p>To</p>
</div>
<div class="right">
<p><strong>{{clientName}}</strong></p>
<p>{{clientAddress}}</p>
</div>
</div>
<div class="dates">
<div class="left">
<p>Invoice Number.</p>
</div>
<div class="right">
<p>{{invoiceNumber}}</p>
</div>
<div class="left">
<p>Date of Invoice:</p>
</div>
<div class="right">
<p>{{invoiceDate}}</p>
</div>
<div class="left">
<p>Payment due by:</p>
</div>
<div class="right">
<p>{{dueDate}}</p>
</div>
</div>
</section>
<section class="content">
<table>
{{tableHeader<tr>
<th colspan="3">Description</th>
<th colspan="2">Quantity</th>
<th colspan="2">Rate</th>
<th colspan="2">Total</th>
</tr>/tableHeader}}
{{tableBody<tr>
<td colspan="3">{{itemTitle}}</td>
<td colspan="2">{{itemQuantity}}</td>
<td colspan="2">{{itemRate}}</td>
<td colspan="2">{{itemTotal}}</td>
</tr>/tableBody}}
{{taxItem<tr class="taxItem">
<td colspan="6"></td>
<td colspan="1">{{taxTitle}}</td>
<td colspan="2">{{taxAmount}}</td>
</tr>/taxItem}}
{{tableFooter<tr>
<td colspan="1"><b>Total</b></td>
<td colspan="8"><b>{{total}}</b></td>
</tr>/tableFooter}}
</table>
</section>
</div>
</body>
</html>