@@ -16,6 +16,7 @@ <h5 class="card-title d-flex justify-content-between align-items-center" style="
1616 < th > Final</ th >
1717 < th > Eligible (ETH)</ th >
1818 < th > Voted</ th >
19+ < th > Proposals</ th >
1920 </ tr >
2021 </ thead >
2122 < tbody class ="template-tbody ">
@@ -33,17 +34,25 @@ <h5 class="card-title d-flex justify-content-between align-items-center" style="
3334 < td data-bind ="text: $root.formatEth(eligible) "> </ td >
3435 < td >
3536 < div style ="position:relative;width:inherit;height:inherit; ">
36- < span data-bind ="text: $root.formatEth(voted) "> </ span > < small class ="text-muted ml-3 " data-bind ="text: '(' + $root.formatFloat(votep, 2) + '%)' "> </ small >
37+ < small > < span data-bind ="text: $root.formatEth(voted) "> </ span > < span class ="text-muted " data-bind ="text: '(' + $root.formatFloat(votep, 2) + '%)' "> </ span > </ small >
3738 < div class ="progress " style ="position:absolute;bottom:-6px;width:100%;height:4px; ">
3839 < div class ="progress-bar " role ="progressbar " data-bind ="style: {width: $root.formatFloat(votep, 2)+'%'}, attr: {'aria-valuenow': $root.formatFloat(votep, 2)+'%'} " aria-valuemin ="0 " aria-valuemax ="100 "> </ div >
3940 </ div >
4041 </ div >
4142 </ td >
43+ < td >
44+ < div style ="position:relative;width:inherit;height:inherit; ">
45+ < span data-bind ="text: blocks + '/' + slots_per_epoch "> </ span > < small class ="text-muted ml-1 " data-bind ="text: '(' + $root.formatFloat(proposalp, 1) + '%)' "> </ small >
46+ < div class ="progress " style ="position:absolute;bottom:-6px;width:100%;height:4px; ">
47+ < div class ="progress-bar " role ="progressbar " data-bind ="style: {width: $root.formatFloat(proposalp, 1)+'%'}, attr: {'aria-valuenow': $root.formatFloat(proposalp, 1)+'%'} " aria-valuemin ="0 " aria-valuemax ="100 "> </ div >
48+ </ div >
49+ </ div >
50+ </ td >
4251 </ tr >
4352 {{ html "<!-- /ko --> " }}
4453 {{ html "<!-- ko if: epochs().length == 0 --> " }}
4554 < tr class ="template-row ">
46- < td style ="text-align: center; " colspan ="5 ">
55+ < td style ="text-align: center; " colspan ="6 ">
4756 no epochs found
4857 </ td >
4958 </ tr >
@@ -65,17 +74,25 @@ <h5 class="card-title d-flex justify-content-between align-items-center" style="
6574 < td > {{ formatEthAddCommasFromGwei $epoch.EligibleEther }}</ td >
6675 < td >
6776 < div style ="position:relative;width:inherit;height:inherit; ">
68- {{ formatEthAddCommasFromGwei $epoch.TargetVoted }} < small class ="text-muted ml-3 "> ({{ formatFloat $epoch.VoteParticipation 2 }}%)</ small >
77+ < small > {{ formatEthAddCommasFromGwei $epoch.TargetVoted }} < span class ="text-muted "> ({{ formatFloat $epoch.VoteParticipation 2 }}%)</ span > </ small >
6978 < div class ="progress " style ="position:absolute;bottom:-6px;width:100%;height:4px; ">
7079 < div class ="progress-bar " role ="progressbar " style ="width: {{ formatFloat $epoch.VoteParticipation 2 }}%; " aria-valuenow ="{{ formatFloat $epoch.VoteParticipation 2 }}% " aria-valuemin ="0 " aria-valuemax ="100 "> </ div >
7180 </ div >
7281 </ div >
7382 </ td >
83+ < td >
84+ < div style ="position:relative;width:inherit;height:inherit; ">
85+ {{ $epoch.BlockCount }}/{{ $epoch.SlotsPerEpoch }} < small class ="text-muted ml-1 "> ({{ formatFloat $epoch.ProposalParticipation 1 }}%)</ small >
86+ < div class ="progress " style ="position:absolute;bottom:-6px;width:100%;height:4px; ">
87+ < div class ="progress-bar " role ="progressbar " style ="width: {{ formatFloat $epoch.ProposalParticipation 1 }}%; " aria-valuenow ="{{ formatFloat $epoch.ProposalParticipation 1 }}% " aria-valuemin ="0 " aria-valuemax ="100 "> </ div >
88+ </ div >
89+ </ div >
90+ </ td >
7491 </ tr >
7592 {{ end }}
7693 {{ else }}
7794 < tr >
78- < td style ="text-align: center; " colspan ="5 ">
95+ < td style ="text-align: center; " colspan ="6 ">
7996 no epochs found
8097 </ td >
8198 </ tr >
0 commit comments