Skip to content

Commit 176022f

Browse files
committed
Added meeting dates to the meeting stats overview graph.
- Legacy-Id: 14947
1 parent dac30f6 commit 176022f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/stats/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,7 @@ def reg_name(r):
910910
"name": "IETF {} - {}, {}".format(int(m.number), m.city, country),
911911
"x": int(m.number),
912912
"y": m.attendees,
913+
"date": m.date.strftime("%d %B %Y"),
913914
"url": url,
914915
}
915916
else:

ietf/templates/stats/meeting_stats_overview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h3>{{ stats_title }}</h3>
3434
tooltip: {
3535
formatter: function () {
3636
var s = '<b>' + this.point.name + '</b>';
37-
37+
s += '<br/>' + this.point.date;
3838
s += '<br/>' + this.series.name + '<br/> Attendees: ' + this.y;
3939
return s;
4040
},

0 commit comments

Comments
 (0)