admin: Remove console.logs used for debugging

This commit is contained in:
Cara Salter 2022-12-06 12:05:13 -05:00
parent 72624a3f4e
commit 24e45af377
No known key found for this signature in database
GPG key ID: 90C66610C82B29CA

View file

@ -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')