Fix to show invalid/valid/casted votes on assignment slide.
This commit is contained in:
parent
223b168441
commit
841ec00b22
@ -85,17 +85,17 @@
|
||||
<tr class="total">
|
||||
<td>
|
||||
<translate>Valid ballots</translate>
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote(poll.votesvalid)">
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote('votesvalid')">
|
||||
{{ vote.value }} {{ vote.percentStr }}
|
||||
<tr class="total">
|
||||
<td>
|
||||
<translate>Invalid ballots</translate>
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote(poll.votesinvalid)">
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote('votesinvalid')">
|
||||
{{ vote.value }} {{ vote.percentStr }}
|
||||
<tr class="total bg-info">
|
||||
<td>
|
||||
<translate>Casted ballots</translate>
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote(poll.votescast)">
|
||||
<td ng-if="poll.has_votes" ng-init="vote = poll.getVote('votescast')">
|
||||
{{ vote.value }} {{ vote.percentStr }}
|
||||
</table>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user