-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
clientareaquotes.tpl
55 lines (52 loc) · 2.28 KB
/
clientareaquotes.tpl
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
{include file="$template/includes/tablelist.tpl" tableName="QuotesList" noSortColumns="5" filterColumn="4"}
<script>
jQuery(document).ready(function() {
var table = jQuery('#tableQuotesList').show().DataTable();
{if $orderby == 'id'}
table.order(0, '{$sort}');
{elseif $orderby == 'date'}
table.order(2, '{$sort}');
{elseif $orderby == 'validuntil'}
table.order(3, '{$sort}');
{elseif $orderby == 'stage'}
table.order(4, '{$sort}');
{/if}
table.draw();
jQuery('#tableLoading').hide();
});
</script>
<div class="table-container clearfix">
<table id="tableQuotesList" class="table table-list w-hidden">
<thead>
<tr>
<th>{lang key='quotenumber'}</th>
<th>{lang key='quotesubject'}</th>
<th>{lang key='quotedatecreated'}</th>
<th>{lang key='quotevaliduntil'}</th>
<th>{lang key='quotestage'}</th>
<th> </th>
</tr>
</thead>
<tbody>
{foreach $quotes as $quote}
<tr onclick="clickableSafeRedirect(event, 'viewquote.php?id={$quote.id}', true)">
<td>{$quote.id}</td>
<td>{$quote.subject}</td>
<td><span class="w-hidden">{$quote.normalisedDateCreated}</span>{$quote.datecreated}</td>
<td><span class="w-hidden">{$quote.normalisedValidUntil}</span>{$quote.validuntil}</td>
<td><span class="label status status-{$quote.stageClass}">{$quote.stage}</span></td>
<td class="text-center">
<form method="post" action="dl.php">
<input type="hidden" name="type" value="q" />
<input type="hidden" name="id" value="{$quote.id}" />
<button type="submit" class="btn btn-default btn-sm"><i class="fas fa-download"></i> {lang key='quotedownload'}</button>
</form>
</td>
</tr>
{/foreach}
</tbody>
</table>
<div class="text-center" id="tableLoading">
<p><i class="fas fa-spinner fa-spin"></i> {lang key='loading'}</p>
</div>
</div>