| 30183 |
manish |
1 |
|
|
|
2 |
<div class="col-lg-9">
|
|
|
3 |
<button type="button" class="incomeHidden" hidden>My Button</button>
|
|
|
4 |
|
|
|
5 |
<div class="info-box light-salmon-bg" style="height: 145px;" >
|
|
|
6 |
<i class="fas fa-coins"></i>
|
|
|
7 |
<h3 style="margin-top:-2px;margin-bottom:12px"><strong>MY INCOME :</strong>
|
|
|
8 |
|
|
|
9 |
<select id = "month-wish-total-income" name="month-wish-total-income" placeholder="months" style="margin:auto;">
|
|
|
10 |
<option value="" disabled selected>month</option>
|
|
|
11 |
#foreach($mVM in $monthValueMap.entrySet())
|
|
|
12 |
#if($mVM.getKey()== $month )
|
|
|
13 |
<option value="$mVM.getKey()" selected>$mVM.getValue()</option>
|
|
|
14 |
#else
|
|
|
15 |
<option value="$mVM.getKey()">$mVM.getValue()</option>
|
|
|
16 |
#end
|
|
|
17 |
#end
|
|
|
18 |
</select>
|
|
|
19 |
|
|
|
20 |
</h3>
|
|
|
21 |
<div class="col-lg-3">
|
|
|
22 |
<div style="margin-top:10px" class="count currency">$totalIncome</div>
|
|
|
23 |
<div class="title" style="margin-left:5px;">Total Income</div>
|
|
|
24 |
</div>
|
|
|
25 |
<div class="col-lg-2">
|
|
|
26 |
<i class="fk_more fa fa-angle-double-right flash" style="margin: -6px;"></i>
|
|
|
27 |
</div>
|
|
|
28 |
<div class="col-lg-2">
|
|
|
29 |
<div style="margin-top:8px" class="count currency">$creditedIncome</div>
|
|
|
30 |
<div class="title credit-income" style="margin-left:5px; cursor:pointer;">Credited Income</div>
|
|
|
31 |
</div>
|
|
|
32 |
<div class="col-lg-2">
|
|
|
33 |
<div style="margin-top:8px" class="count currency">$pendingTotalIncome</div>
|
|
|
34 |
<div class="title" style="margin-left:5px; cursor:pointer;" >Pending Income</div>
|
|
|
35 |
</div>
|
|
|
36 |
</div>
|
|
|
37 |
</div>
|