Files @ 79743b711d6f
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/schedule/schedule_conference.html - annotation

James Polley
More consistent color-coding for talk status buttons

- there's no btn-default, switch that to btn-primary
- consistently use info for standby, primary for undecided, success
for accept and warn for rejected
ff16f71df6e8
04f246d85071
04f246d85071
04f246d85071
5409d4974aed
04f246d85071
04f246d85071
ff16f71df6e8
04f246d85071
04f246d85071
04f246d85071
04f246d85071
04f246d85071
04f246d85071
fa9bb1a9f9d2
ff16f71df6e8
ff16f71df6e8
ff16f71df6e8
ff16f71df6e8
ff16f71df6e8
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
d6cf16cedb78
fa9bb1a9f9d2
d6cf16cedb78
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
fa9bb1a9f9d2
0eda616345b9
ff16f71df6e8
ff16f71df6e8
fa9bb1a9f9d2
fa9bb1a9f9d2
04f246d85071
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
5409d4974aed
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
5409d4974aed
5409d4974aed
5409d4974aed
5409d4974aed
5409d4974aed
5409d4974aed
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
d6cf16cedb78
{% extends "symposion/schedule/public_base.html" %}

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

{% block head_title %}Conference Schedule{% endblock %}
{% block header_title %}Conference Schedule{% endblock %}

{% block body_class %}full{% endblock %}

{% block right %}
{% endblock %}

{% block content_base %}

  <div class="page-head">
    {% block breadcrumbs %}{% endblock %}
  </div>

  <div class="panel panel__compact">
    <div class="panel--content">

      <div class="panel--tab-controls">
        <div class="panel--tabs">
          {% for section in sections %}
            {% for timetable in section.days %}
              <a
                data-tab-control="{{ timetable.day.date|date:"l"}}"
                id="schedule_day_{{ timetable.day.date|date:"l"|lower}}"
                class="panel--tab-switch is-active">
                  {{ timetable.day.date|date:"l"}}
              </a>
            {% endfor %}
          {% endfor %}
        </div>
      </div>

      {% for section in sections %}
         {% cache 600 "schedule-table" section.schedule.section %}
            {% for timetable in section.days %}
              <div data-tab-content="{{ timetable.day.date|date:"l"}}" class="panel--tab-content is-active">
                <h3>{{ section.schedule.section.name }}{{ timetable.day.date|date:"l" }}, {{ timetable.day.date }}</h3>
                {% include "symposion/schedule/_grid.html" %}
              </div>
            {% endfor %}
         {% endcache %}
      {% endfor %}

    </div>
  </div>
{% endblock %}

{% block scripts_extra %}
  <script type="text/javascript">

    fragment = window.location.hash.toLowerCase().substring(1);

    if (!fragment) {
      OFFSET = -11 * (60 * 60 * 1000); // Sydney is 11 hours ahead of UTC in Jan.
      JAN = 0; // because January is 0, not 1

      fragments = [
        {"day": "monday", "time": Date.UTC(2018, JAN, 22)},
        {"day": "tuesday", "time": Date.UTC(2018, JAN, 23)},
        {"day": "wednesday", "time": Date.UTC(2018, JAN, 24)},
        {"day": "thursday", "time": Date.UTC(2018, JAN, 25)},
        {"day": "friday", "time": Date.UTC(2018, JAN, 26)},
        {"day": "saturday", "time": Date.UTC(2018, JAN, 27)},
      ];

      now = new Date().getTime();

      for (i = 0; i < 5; i++) {
        f = fragments[i];
        g = fragments[i+1];
        if ((f.time + OFFSET) <= now && now < (g.time + OFFSET)) {
          fragment = f.day;
        }
      }
    }

    document.addEventListener("DOMContentLoaded", function(event) {

      if (!fragment) {
        return;
      }

      fragmentSwitch = "schedule_day_" + fragment;

      switches = document.getElementsByClassName("panel--tab-switch");
      tabs = document.getElementsByClassName("panel--tab-content");

      for (i = 0; i < switches.length; i++) {

        if (switches[i].id == fragmentSwitch) {
          switches[i].classList.add("is-active");
          tabs[i].classList.add("is-active");
        } else {
          switches[i].classList.remove("is-active");
          tabs[i].classList.remove("is-active");
        }
      }

    });

    window.addEventListener("load", function(event) {

      $(".panel--tab-switch").click(function(event) {
        // This updates the window location fragment so that
        // the URL bar is updated, and so that when you go
        // back, it loads the right page.

        // len("schedule_day_") == 13
        day = event.target.id.substring(13);

        if(history.pushState) {
            history.pushState(null, null, "#" + day);
        }
      });
    });

  </script>
  {{ block.super }}
{% endblock %}