I'm trying to edit my code on my django but somethings really weird is happening and i don't know what's happening. making me crazy af.
my chart code is inside static folder under js/chart1.js
then on my django template,
i have <script type="text/javascript" src="{% static 'js/chart1.js' %}"></script>
now i edited the chart1.js but it wont reflect.
- i tried deleting staticfolder,
- restarting server,
- even deleting chart1.js under js directory
just as long as <script type="text/javascript" src="{% static 'js/chart1.js' %}"></script>
is there, the chart still there even tho chart1.js dont exists anymore. i dont know where django getting its data for my graph.
can someone tell me whats happening? thanks!