Files @ 7fac10241ec7
Branch filter:

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

Joel Addison
Improve attendee reports

Display attendee profile data in normal table without DataTables so
sorting is not applied, causing data to be confusing to read.
Include item quantity in attendee data report for accurate schwag packing.
{% 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 %}