Files @ 929388220cfc
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/schedule/schedule_detail.html

Joel Addison
Update speaker styling

Use site base template for all pages.
Fix speaker profile to work with Bootstrap 4.
{% extends "site_base.html" %}

{% load i18n %}
{% load cache %}
{% load lca2018_tags %}
{% load sitetree %}

{% block head_title %}{{ schedule.section.name }} Schedule{% endblock %}
{% block page_title %}{{ schedule.section.name }} Schedule{% endblock%}

{% block content %}
  {% cache 600 "schedule-detail-table" schedule.section %}
    {% for timetable in days %}
    <div class="row">
      <div class="col-12">
        <h2 class="my-4">
          {{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}
        </h2>
        <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 %}
{% endblock %}