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
|
@ -82,12 +82,10 @@
|
||||||
<script>
|
<script>
|
||||||
let schoolNames = []
|
let schoolNames = []
|
||||||
let schoolNums = []
|
let schoolNums = []
|
||||||
console.log("{{schools}}")
|
|
||||||
|
|
||||||
{% for school in schools %}
|
{% for school in schools %}
|
||||||
schoolNames.push('{{ school }}')
|
schoolNames.push('{{ school }}')
|
||||||
schoolNums.push({{ schools[school] }})
|
schoolNums.push({{ schools[school] }})
|
||||||
console.log("{{school}}")
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
let schoolCtx = document.getElementById('schoolCanvas')
|
let schoolCtx = document.getElementById('schoolCanvas')
|
||||||
|
|
Loading…
Add table
Reference in a new issue