-
Notifications
You must be signed in to change notification settings - Fork 41
/
affiliates.tpl
139 lines (122 loc) · 5.08 KB
/
affiliates.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{if $inactive}
{include file="$template/includes/alert.tpl" type="danger" msg="{lang key='affiliatesdisabled'}" textcenter=true}
{else}
{include file="$template/includes/flashmessage.tpl"}
{if $withdrawrequestsent}
<div class="alert alert-success">
<i class="fas fa-check fa-fw"></i>
{lang key='affiliateswithdrawalrequestsuccessful'}
</div>
{/if}
<div class="row">
<div class="col-md-4">
<div class="affiliate-stat affiliate-stat-green alert-warning mb-2">
<i class="fas fa-users"></i>
<span>{$visitors}</span>
{lang key='affiliatesclicks'}
</div>
</div>
<div class="col-md-4">
<div class="affiliate-stat affiliate-stat-green alert-info mb-2">
<i class="fas fa-shopping-cart"></i>
<span>{$signups}</span>
{lang key='affiliatessignups'}
</div>
</div>
<div class="col-md-4">
<div class="affiliate-stat affiliate-stat-green alert-success mb-2">
<i class="far fa-chart-bar"></i>
<span>{$conversionrate}%</span>
{lang key='affiliatesconversionrate'}
</div>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<p class="h3">{lang key='affiliatesreferallink'}</p>
<input type="text" class="form-control" readonly="readonly" value="{$referrallink}">
</div>
</div>
<div class="row">
<div class="col-md-8 offset-md-2">
<table class="table table-bordered table-striped table-rounded">
<tr>
<td class="text-right">{lang key='affiliatescommissionspending'}:</td>
<td><strong>{$pendingcommissions}</strong></td>
</tr>
<tr>
<td class="text-right">{lang key='affiliatescommissionsavailable'}:</td>
<td><strong>{$balance}</strong></td>
</tr>
<tr>
<td class="text-right">{lang key='affiliateswithdrawn'}:</td>
<td><strong>{$withdrawn}</strong></td>
</tr>
</table>
</div>
</div>
{if !$withdrawrequestsent}
<div class="text-center">
<form method="POST" action="{$smarty.server.PHP_SELF}">
<input type="hidden" name="action" value="withdrawrequest" />
<button type="submit" class="btn btn-lg btn-danger{if !$withdrawlevel} disabled" disabled="disabled{/if}">
<i class="fas fa-university"></i> {lang key='affiliatesrequestwithdrawal'}
</button>
</form>
</div>
{if !$withdrawlevel}
<p class="text-muted text-center">{lang key="affiliateWithdrawalSummary" amountForWithdrawal=$affiliatePayoutMinimum}</p>
{/if}
{/if}
<h2>{lang key='affiliatesreferals'}</h2>
{include file="$template/includes/tablelist.tpl" tableName="AffiliatesList"}
<script>
jQuery(document).ready(function() {
var table = jQuery('#tableAffiliatesList').show().DataTable();
{if $orderby == 'regdate'}
table.order(0, '{$sort}');
{elseif $orderby == 'product'}
table.order(1, '{$sort}');
{elseif $orderby == 'amount'}
table.order(2, '{$sort}');
{elseif $orderby == 'status'}
table.order(4, '{$sort}');
{/if}
table.draw();
jQuery('#tableLoading').hide();
});
</script>
<div class="table-container clearfix">
<table id="tableAffiliatesList" class="table table-list w-hidden">
<thead>
<tr>
<th>{lang key='affiliatessignupdate'}</th>
<th>{lang key='orderproduct'}</th>
<th>{lang key='affiliatesamount'}</th>
<th>{lang key='affiliatescommission'}</th>
<th>{lang key='affiliatesstatus'}</th>
</tr>
</thead>
<tbody>
{foreach $referrals as $referral}
<tr class="text-center">
<td><span class="w-hidden">{$referral.datets}</span>{$referral.date}</td>
<td>{$referral.service}</td>
<td data-order="{$referral.amountnum}">{$referral.amountdesc}</td>
<td data-order="{$referral.commissionnum}">{$referral.commission}</td>
<td><span class='label status status-{$referral.rawstatus|strtolower}'>{$referral.status}</span></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>
{if $affiliatelinkscode}
<h2>{lang key='affiliateslinktous'}</h2>
<div class="margin-bottom text-center">
{$affiliatelinkscode}
</div>
{/if}
{/if}