You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
600 B
23 lines
600 B
{{define "invoice_search_results"}} {{if .Error}}
|
|
<p class="error">Error: {{.Error}}</p>
|
|
{{else if .invoiceNumber}}
|
|
<h3>Invoice Details</h3>
|
|
<p>Invoice Number: {{.invoiceNumber}}</p>
|
|
<p>Total Price: ${{.totalPrice}}</p>
|
|
<p>Status: {{.status}}</p>
|
|
{{with .customer}}
|
|
<p>Customer: {{.name}}</p>
|
|
{{end}} {{with .job}}
|
|
<p>Job: {{.name}}</p>
|
|
{{end}} {{with .location}}
|
|
<p>Location: {{.name}}</p>
|
|
{{end}} {{if .items}}
|
|
<h4>Items:</h4>
|
|
<ul>
|
|
{{range .items}}
|
|
<li>{{.description}} - ${{.totalPrice}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}} {{else}}
|
|
<p>No invoice found with the given identifier.</p>
|
|
{{end}} {{end}}
|
|
|