Skip to content

Commit 361f50a

Browse files
committed
schedule/events: add Track column
We no longer have rows with Track name so let add column with this information. Had to rename 'Attachments' into 'Files' to make table fit in page.
1 parent e6872ae commit 361f50a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

content/schedule/events.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ <h1><%= size %> Events</h1>
2121
<tr>
2222
<th>Event</th>
2323
<th>Speakers</th>
24+
<th>Track</th>
2425
<th>Room</th>
2526
<th>Start</th>
2627
<th>End</th>
27-
<th>Attachments</th>
28+
<th>Files</th>
2829
<th>Videos</th>
2930
</tr>
3031
</thead>
@@ -34,6 +35,7 @@ <h1><%= size %> Events</h1>
3435
<tr>
3536
<td><%= l(e) %></td>
3637
<td><%= l e[:speakers].map(&$to_speaker) %></td>
38+
<td><%= l track e[:track] %></td>
3739
<td><%= l room e[:room] %></td>
3840
<td><%= l day e[:day] %> <%= e[:start_time] %></td>
3941
<td><%= e[:end_time] %></td>

0 commit comments

Comments
 (0)