File diff 4f0871b0322a → 630bf4086135
pinaxcon/templates/symposion/schedule/schedule_conference.html
Show inline comments
...
 
@@ -37,25 +37,25 @@
 

	
 
  <div class="tab-content d-print-block my-3" id="schedule-tabContent">
 
    {% for section in sections %}
 
      {% cache 600 "schedule-table" section.schedule.section %}
 
      {% for timetable in section.days %}
 
      <div class="row tab-pane fade {% if forloop.first %}show active{% endif %} d-print-block" id="{{ timetable.day.date|date:"l"|lower}}" role="tabpanel" aria-labelledby="schedule_day_{{ timetable.day.date|date:"l"|lower}}-tab">
 
        <div class="col-12">
 
          <h2 class="my-4">
 
            {{ section.schedule.section.name }}
 
            <span class="clearfix d-sm-block d-md-none"></span>
 
            <small class="text-muted">{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}</small>
 
          </h2>
 
          <p class="timezone-info small">Conference times are in {{ settings.LCA_START|date:'T' }} (UTC{{ settings.LCA_START|date:'O' }}). <span class="d-print-none">Current talks will be highlighted.</span></p>
 
          <p class="timezone-info small">Conference times are in {{ settings.CONF_START|date:'T' }} (UTC{{ settings.CONF_START|date:'O' }}). <span class="d-print-none">Current talks will be highlighted.</span></p>
 
          <div class="table-responsive d-none d-md-block">
 
            {% include "symposion/schedule/_grid.html" %}
 
          </div>
 
          <div class="mobile-schedule d-sm-block d-md-none">
 
            {% include "symposion/schedule/_mobile.html" %}
 
          </div>
 
        </div>
 
      </div>
 
      {% endfor %}
 
      {% endcache %}
 
    {% endfor %}
 
  </div>