Added meeting dates to the meeting stats overview graph.

- Legacy-Id: 14947
This commit is contained in:
Henrik Levkowetz 2018-03-26 22:58:14 +00:00
parent dac30f6ff7
commit 176022f57b
2 changed files with 2 additions and 1 deletions

View file

@ -910,6 +910,7 @@ def meeting_stats(request, num=None, stats_type=None):
"name": "IETF {} - {}, {}".format(int(m.number), m.city, country),
"x": int(m.number),
"y": m.attendees,
"date": m.date.strftime("%d %B %Y"),
"url": url,
}
else:

View file

@ -34,7 +34,7 @@
tooltip: {
formatter: function () {
var s = '<b>' + this.point.name + '</b>';
s += '<br/>' + this.point.date;
s += '<br/>' + this.series.name + '<br/> Attendees: ' + this.y;
return s;
},