-
Notifications
You must be signed in to change notification settings - Fork 0
/
pronto.html
54 lines (54 loc) · 1.69 KB
/
pronto.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pronto Template (Esfresco)</title>
<link rel="stylesheet" href="./css/pronto.css">
</head>
<body>
<header>
<h1 class="title">{{userCompany}}<br />{{username}}</h1>
</header>
<div class="container">
<section class="info left">
<div class="to">
<h3 class="subtitle">To: {{clientName}}</h3>
<p>{{clientAddress}}</p>
</div>
<div class="dates">
<p>Invoice No. <strong>{{invoiceNumber}}</strong></p>
<p>Date of Invoice: <strong>{{invoiceDate}}</strong>.</p>
<p>Payment due by: <strong>{{dueDate}}</strong>.</p>
</div>
</section>
<section class="content left">
<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>
<div class="clear"></div>
<footer>
<p>{{userCompany}} {{userAddress}}</p>
</footer>
</body>
</html>