I\'m trying to understand if it it\'s possible to incorporate dynamic data into a Django Chart JS architecture. I went through a couple of tutorials and ultimately got Django t
so i have been working the same stuff here, i think your label not showing up because the label on chart.js only wants a string, so try this on your labels:
labels: [{% for i in book %}"{{ i.id }}",{% endfor %}]