-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.php
More file actions
57 lines (56 loc) · 2.4 KB
/
results.php
File metadata and controls
57 lines (56 loc) · 2.4 KB
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
<div class="panel panel-default" id="pnl-results">
<div class="panel-heading">
<h3 class="panel-title">Résultats <span id="spn-results-title">de la simulation</span></h3>
</div>
<table class="table">
<tr id="tr-total">
<td>
<h3><span id="spn-total-title">Total à payer</span>
<a tabindex="0" class="hidden" id="a-total-popover-danger"
data-toggle="popover" data-trigger="focus"
title="Total supérieur au solde"
data-content="Le total que vous devez payer est supérieur au solde actuel de votre badge : retirez des articles !">
Total à payer <span class="glyphicon glyphicon-info-sign"></span>
</a>
</h3>
</td>
<td class="text-right" style="padding-right: 20px">
<h3><span class="bill-font" id="spn-total">0.00</span> €</h3>
</td>
</tr>
<tr id="tr-lost-grant">
<td>
<span id="spn-lost-grant-title">Subvention perdue</span>
<a tabindex="0" class="hidden" id="a-lost-grant-popover-warning"
data-toggle="popover" data-trigger="focus"
title="Subvention perdue !"
data-content="Une partie de la subvention accordée par votre employeur est perdue : ajoutez des articles pour optimiser votre plateau !">
Subvention perdue <span class="glyphicon glyphicon-info-sign"></span>
</a>
</td>
<td class="text-right" style="padding-right: 20px">
<span class="bill-font" id="spn-grant-lost">0.00</span> €
</td>
</tr>
<tr id="tr-new-balance">
<td>
<span id="spn-new-balance-title">Nouveau solde</span>
<a tabindex="0" class="hidden" id="a-new-balance-popover-danger"
data-toggle="popover" data-trigger="focus"
title="Vous devez recharger !"
data-content="Votre nouveau solde ne vous permettra pas de vous offrir un repas lors de votre prochain passage : pensez à recharger !">
Nouveau solde <span class="glyphicon glyphicon-info-sign"></span>
</a>
<a tabindex="0" class="hidden" id="a-new-balance-popover-warning"
data-toggle="popover" data-trigger="focus"
title="Nouveau solde faible"
data-content="Votre nouveau solde ne vous permettra pas de vous offrir un repas équivalent lors de votre prochain passage : pensez à recharger !">
Nouveau solde <span class="glyphicon glyphicon-info-sign"></span>
</a>
</td>
<td class="text-right" style="padding-right: 20px">
<span class="bill-font" id="spn-new-balance">0.00</span> €
</td>
</tr>
</table>
</div>