|
8 | 8 | <th data-priority="2">Event Type</th> |
9 | 9 | <th data-priority="100" class="text-center">Tags</th> |
10 | 10 | <th data-priority="3">Speakers</th> |
11 | | - <th data-priority="100"><i class="fas fa-video" title="Recording" alt="Streaming"></i></th> |
12 | | - <th data-priority="100"><i class="fas fa-play" title="Streaming" alt="Streaming"></i></th> |
| 11 | + <th data-priority="100"><i class="fas fa-video" title="Recording" alt="Recording"></i></th> |
| 12 | + <th data-priority="100"><i class="fas fa-floppy-disk" title="Recording" alt="Recording"></i></th> |
| 13 | + <th data-priority="100"><i class="fas fa-broadcast-tower" title="Streaming" alt="Streaming"></i></th> |
13 | 14 | <th data-priority="1">Scheduled</th> |
14 | 15 | </tr> |
15 | 16 | </thead> |
|
38 | 39 | N/A |
39 | 40 | {% endfor %} |
40 | 41 | </td> |
41 | | - <td class="text-center" title="Recording: {{ event.video_recording|yesno }}"><span class="hidden">{{ event.video_recording }}</span>{{ event.video_recording|truefalseicon }}</td> |
42 | | - <td class="text-center" title="Streaming: {{ event.video_streaming|yesno }}"><span class="hidden">{{ event.video_streaming }}</span>{{ event.video_streaming|truefalseicon }}</td> |
43 | | - <td data-order="{{ event.event_slots.all.0.when.lower|date:"YmdHis" }}"> |
44 | | - {% for slot in event.event_slots.all %} |
45 | | - {{ slot.event_location.icon_html }} {{ slot.event_location.name }} at {{ slot.when.lower }}<br> |
46 | | - {% empty %} |
47 | | - <i>Not scheduled yet</i> |
48 | | - {% endfor %} |
49 | | - </td> |
50 | | - </tr> |
| 42 | + <td class="text-center"><span class="hidden">{% if event.video_recording or event.video_streaming %}True</span>{{ True|truefalseicon }}{% else %}False</span>{{ False|truefalseicon }}{% endif %}</td> |
| 43 | + <td class="text-center" title="Recording: {{ event.video_recording|yesno }}"><span class="hidden">{{ event.video_recording }}</span>{{ event.video_recording|truefalseicon }}</td> |
| 44 | + <td class="text-center" title="Streaming: {{ event.video_streaming|yesno }}"><span class="hidden">{{ event.video_streaming }}</span>{{ event.video_streaming|truefalseicon }}</td> |
| 45 | + <td data-order="{{ event.event_slots.all.0.when.lower|date:"YmdHis" }}"> |
| 46 | + {% for slot in event.event_slots.all %} |
| 47 | + {{ slot.event_location.icon_html }} {{ slot.event_location.name }} at {{ slot.when.lower }}<br> |
| 48 | + {% empty %} |
| 49 | + <i>Not scheduled yet</i> |
| 50 | + {% endfor %} |
| 51 | + </td> |
| 52 | + </tr> |
51 | 53 | {% endif %} |
52 | 54 | {% endfor %} |
53 | 55 | </tbody> |
|
0 commit comments