-
Notifications
You must be signed in to change notification settings - Fork 0
/
uno.html
52 lines (52 loc) · 1.52 KB
/
uno.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Uno Template (Esfresco)</title>
<link rel="stylesheet" href="./css/uno.css">
</head>
<body>
<header>
<h1 class="title">{{userCompany}}</h1>
<div class="to">
<h4 class="subtitle">To</h4>
<b>{{clientName}}</b>
<p>{{clientAddress}}</p>
</div>
<div class="from">
<h4 class="subtitle">From</h4>
<b>{{username}}</b>
<p>{{userAddress}}</p>
</div>
<div class="dates">
<p><b>Invoice No.</b> {{invoiceNumber}}</p>
<p><b>Date of Invoice</b>: {{invoiceDate}}.</p>
<p><b>Payment due by</b>: {{dueDate}}.</p>
</div>
</header>
<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>
</body>
</html>