Merge remote-tracking branch 'origin/dev' into dev
# Conflicts: # templates/statistieken.phtml
This commit is contained in:
@ -1,6 +1,18 @@
|
||||
<?php include '__header.phtml'; ?>
|
||||
<a class="btn btn-default pull-left" href="rekeningen/<?= $rekeningnr ?>" role="button">Terug</a>
|
||||
<canvas id="grafiek" height="100"></canvas>
|
||||
<?php
|
||||
if (!$statistieken) {
|
||||
?>
|
||||
|
||||
<div class="alert alert-danger" role="alert"><b>Fout!</b> Dit is niet een aan jouw account gekoppelde rekening.</div>
|
||||
<?php
|
||||
|
||||
} else {
|
||||
?>
|
||||
|
||||
<a class="btn btn-default pull-left" href="rekeningen/<?= $rekeningnr?>" role="button">Terug</a>
|
||||
<canvas id="myChart" height="100"></canvas>
|
||||
<script>
|
||||
Chart.defaults.global.legend.display = false;//Geen legenda
|
||||
var grafiek = document.getElementById("grafiek");
|
||||
@ -47,5 +59,8 @@
|
||||
}]
|
||||
}
|
||||
});
|
||||
|
||||
<?php
|
||||
} ?>
|
||||
</script>
|
||||
<?php include '__footer.phtml'; ?>
|
||||
|
Reference in New Issue
Block a user