Added meeting dates to the meeting stats overview graph.
- Legacy-Id: 14947
This commit is contained in:
parent
dac30f6ff7
commit
176022f57b
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue