| {{ row.time|date:"h:iA" }} | 
            {% for slot in row.slots %}
                
                    {% if slot.kind.label == "talk" %}
                        {% if not slot.presentation %}
                            +
                        {% else %}
                             {{ slot.presentation.title }} 
                            {{ slot.presentation.speaker }} 
                            
                                Edit
                            
                        {% endif %}
                    {% else %}
                        {{ slot.kind.label }}
                    {% endif %}
                 | 
            {% endfor %}
        
    {% endfor %}