1
0
mirror of https://git.cant.at/Madeorsk/PollVerlaine synced 2024-11-01 07:24:31 +01:00
PollVerlaine/views/results.php
2018-08-26 12:06:30 +02:00

23 lines
691 B
PHP

<?php
$chart_colors_number = count($chart_colors);
$total_votes = 0;
foreach ($poll->options as $option)
$total_votes += $option->votes;
?>
<h1 class="poll"><?= $poll->title ?></h1>
<main class="results">
<div class="options">
<table>
<?php foreach ($poll->options as $index => $option): ?>
<tr>
<td class="number"><?= $option->votes ?></td>
<td style="color: <?= $chart_colors[$index%$chart_colors_number] ?>"><?= $option->label ?></td>
<td><?= $total_votes == 0 ? 0 : round($option->votes / $total_votes, 3)*100 ?>%</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<div class="chart">
<?= $results_chart ?>
</div>
</main>