| {{ row.time|date:"h:iA" }} | 
        {% for slot in row.slots %}
          
            {% if slot.kind.label == "talk" or slot.kind.label == "tutorial" %}
              {% if not slot.content %}
              {% else %}
                
                  {{ slot.content.title }}
                
                
                  {{ slot.content.speakers|join:", " }}
                
              {% endif %}
            {% else %}
              {% if slot.content_override.raw %}
                {{ slot.content_override.rendered|safe }}
              {% else %}
                {{ slot.kind.label }}
              {% endif %}
            {% endif %}
           | 
        {% endfor %}
        {% if forloop.last %}
           | 
        {% endif %}
      
    {% endfor %}