Fix conference date span on confreg dashboard
authorDaniel Gustafsson <daniel@yesql.se>
Wed, 28 Jun 2017 08:49:14 +0000 (10:49 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Wed, 28 Jun 2017 08:49:14 +0000 (10:49 +0200)
The dates range for the conference was using startdate for both
start and end, which wen't unnoticed since most conferences have
been single day events.

template/confreg/admin_dashboard_single.html

index 9757e51fd2e6c6af14d1c49086bf33f4248ccee5..c0ebd04f73ee825f6e7f7d049705b4a4a42bd9a2 100644 (file)
@@ -4,7 +4,7 @@
 
 <h1>{{c.conferencename}}</h1>
 <div>
-  <span class="label label-default">{{c.startdate|date:"Y-m-d"}}</span> - <span class="label label-default">{{c.startdate|date:"Y-m-d"}}</span>
+  <span class="label label-default">{{c.startdate|date:"Y-m-d"}}</span> - <span class="label label-default">{{c.enddate|date:"Y-m-d"}}</span>
 </div>
 
 <h2>Registrations</h2>