|
@@ -116,7 +116,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['Channel', 'Messages'],
|
|
['Channel', 'Messages'],
|
|
|
{% for channel in channelslist.items %}
|
|
{% for channel in channelslist.items %}
|
|
|
- ['{{ channel.0 }}', {{ channel.1.messagecount }}],
|
|
|
|
|
|
|
+ ['{{ channel.0|escapejs }}', {{ channel.1.messagecount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -152,7 +152,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['Channel', 'Joins'],
|
|
['Channel', 'Joins'],
|
|
|
{% for channel in channelslist.items %}
|
|
{% for channel in channelslist.items %}
|
|
|
- ['{{ channel.0 }}', {{ channel.1.joincount }}],
|
|
|
|
|
|
|
+ ['{{ channel.0|escapejs }}', {{ channel.1.joincount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -188,7 +188,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['Channel', 'Kicks'],
|
|
['Channel', 'Kicks'],
|
|
|
{% for channel in channelslist.items %}
|
|
{% for channel in channelslist.items %}
|
|
|
- ['{{ channel.0 }}', {{ channel.1.kickcount }}],
|
|
|
|
|
|
|
+ ['{{ channel.0|escapejs }}', {{ channel.1.kickcount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -224,7 +224,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'Messages'],
|
|
['User', 'Messages'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.messagecount }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.messagecount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -260,7 +260,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'Joins'],
|
|
['User', 'Joins'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.joincount }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.joincount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -296,7 +296,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'Kicks given'],
|
|
['User', 'Kicks given'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.kgivencount }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.kgivencount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -332,7 +332,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'Kicks received'],
|
|
['User', 'Kicks received'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.kreceivedcount }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.kreceivedcount }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -368,7 +368,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'XP spent'],
|
|
['User', 'XP spent'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.xpspent }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.xpspent }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|
|
@@ -404,7 +404,7 @@
|
|
|
var data = google.visualization.arrayToDataTable([
|
|
var data = google.visualization.arrayToDataTable([
|
|
|
['User', 'Coin'],
|
|
['User', 'Coin'],
|
|
|
{% for item in userslist.items %}
|
|
{% for item in userslist.items %}
|
|
|
- ['{{ item.0 }}', {{ item.1.coin }}],
|
|
|
|
|
|
|
+ ['{{ item.0|escapejs }}', {{ item.1.coin }}],
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
]);
|
|
]);
|
|
|
var options = {
|
|
var options = {
|