File diff 193ffc76d5a2 → f07246f9d5cb
pinaxcon/templates/symposion/schedule/_grid.html
Show inline comments
...
 
@@ -32,24 +32,27 @@
 
                <span class="title">
 
                  <a href="{% url "schedule_presentation_detail" slot.content.pk %}">{{ slot.content.title }}</a>
 
                </span>
 
                <span class="speaker">
 
                  {{ slot.content.speakers|join:", " }}
 
                </span>
 
                <span class="room">
 
                  {{ slot.rooms|join:", "}}
 
                </span>
 
              {% endif %}
 
            {% elif slot.kind.label == "shortbreak" %}
 
            {% else %}
 
              {% if slot.content_override %}
 
                {{ slot.content_override_html|safe }}
 
              {% else %}
 
                {{ slot.kind.label }}
 
              {% endif %}
 
            {% endif %}
 
            {% if "break" in slot.kind.label %}
 
            {% else %}
 
              <span class="room">
 
                {{ slot.rooms|join:", "}}
 
              </span>
 
            {% endif %}
 
          </td>
 
        {% endfor %}
 
        {% if forloop.last %}
 
          <td colspan="{{ timetable.rooms|length }}"></td>
 
        {% endif %}
 
      </tr>