moviewyrm/bookwyrm/templates/settings/dashboard/status_chart.html
2021-10-04 10:53:22 -07:00

22 lines
523 B
HTML

{% load i18n %}
<script>
var statusStats = new Chart(
document.getElementById('status_stats'),
{
type: 'bar',
data: {
labels: [{% for label in status_stats.labels %}"{{ label }}",{% endfor %}],
datasets: [{
label: '{% trans "Statuses posted" %}',
backgroundColor: 'rgb(255, 99, 132)',
borderColor: 'rgb(255, 99, 132)',
data: {{ status_stats.total }},
}]
},
options: {}
},
);
</script>