admin: Remove console.logs used for debugging
This commit is contained in:
parent
72624a3f4e
commit
24e45af377
1 changed files with 2 additions and 4 deletions
|
@ -81,13 +81,11 @@
|
|||
<canvas id="schoolCanvas" width="400" height="400"></canvas>
|
||||
<script>
|
||||
let schoolNames = []
|
||||
let schoolNums = []
|
||||
console.log("{{schools}}")
|
||||
let schoolNums = []
|
||||
|
||||
{% for school in schools %}
|
||||
schoolNames.push('{{ school }}')
|
||||
schoolNums.push({{ schools[school] }})
|
||||
console.log("{{school}}")
|
||||
schoolNums.push({{ schools[school] }})
|
||||
{% endfor %}
|
||||
|
||||
let schoolCtx = document.getElementById('schoolCanvas')
|
||||
|
|
Loading…
Add table
Reference in a new issue