2021-09-11 14:09:05 +00:00
|
|
|
{% load i18n %}
|
|
|
|
<script>
|
|
|
|
|
|
|
|
var statusStats = new Chart(
|
|
|
|
document.getElementById('status_stats'),
|
2021-10-04 17:53:22 +00:00
|
|
|
{
|
|
|
|
type: 'bar',
|
|
|
|
data: {
|
|
|
|
labels: [{% for label in status_stats.labels %}"{{ label }}",{% endfor %}],
|
|
|
|
datasets: [{
|
|
|
|
label: '{% trans "Statuses posted" %}',
|
2021-10-04 18:14:50 +00:00
|
|
|
backgroundColor: 'hsl(141, 71%, 48%)',
|
|
|
|
borderColor: 'hsl(141, 71%, 48%)',
|
2021-10-04 17:53:22 +00:00
|
|
|
data: {{ status_stats.total }},
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
options: {}
|
|
|
|
},
|
2021-09-11 14:09:05 +00:00
|
|
|
);
|
|
|
|
</script>
|
|
|
|
|