summaryrefslogtreecommitdiffstats
path: root/lpschedule_generator
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2015-12-19 23:44:57 -0500
committerrsiddharth <rsd@gnu.org>2015-12-19 23:44:57 -0500
commitd939dadedf6b9d8b431ae15a2fdfcf5b5ffd63d5 (patch)
tree91953ba768f49fb2bb3d934c22ac64a4d2197597 /lpschedule_generator
parent263ad0a887908d5bbfc93837ab7fc9903a088f5b (diff)
Moved templates/ under lpschedule_generator module
Diffstat (limited to 'lpschedule_generator')
-rw-r--r--lpschedule_generator/__init__.py0
-rw-r--r--lpschedule_generator/templates/lp-sch-2016.jinja2136
2 files changed, 136 insertions, 0 deletions
diff --git a/lpschedule_generator/__init__.py b/lpschedule_generator/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lpschedule_generator/__init__.py
diff --git a/lpschedule_generator/templates/lp-sch-2016.jinja2 b/lpschedule_generator/templates/lp-sch-2016.jinja2
new file mode 100644
index 0000000..4ea99cc
--- /dev/null
+++ b/lpschedule_generator/templates/lp-sch-2016.jinja2
@@ -0,0 +1,136 @@
+{# -*- mode: jinja2; -*- #}
+{#
+ Copyright (C) 2015 lpschedule-generator contributors. See CONTRIBUTORS.
+
+ This file is part of lpschedule-generator.
+
+ lpschedule-generator is free software: you can redistribute it
+ and/or modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ lpschedule-generator is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with lpschedule-generator (see COPYING). If not, see
+ <http://www.gnu.org/licenses/>.
+#}
+
+{# macros start #}
+
+{# make speakers macro #}
+{% macro mk_speakers(speakers) %}
+ <span class="program-session-speaker">
+ {% for speaker in speakers %}
+ {% if loop.last %}
+ {{ speaker }}
+ {% else %}
+ {{ speaker }},
+ {% endif %}
+ {% endfor %}
+ </span>
+{% endmacro %}
+
+{# make room macro #}
+{% macro mk_room(room) %}
+ <p><span class="label label-default">{{ room }}</span></p>
+{% endmacro %}
+
+{# make day header macro #}
+{% macro mk_day_header(day, collapse_area) %}
+ <header class="program-day-header">
+ <hgroup>
+ <h2>{{ day }}
+ <a class="btn btn-default btn-xs" role="button"
+ data-toggle="collapse" aria-expanded="false"
+ aria-controls="{{ collapse_area }}"
+ href="#{{ collapse_area }}">
+ &#x2193;
+ </a>
+ </h2>
+ </hgroup>
+ </header>
+{% endmacro %}
+
+{# make timeslot header macro #}
+{% macro mk_timeslot_header(timeslot, collapse, collapse_area='') %}
+ <header class="program-timeslot-header">
+ <hgroup>
+ <h2>{{ timeslot }}
+ {% if collapse %}
+ <a class="btn btn-default btn-xs" role="button"
+ data-toggle="collapse" aria-expanded="false"
+ aria-controls="{{ collapse_area }}"
+ href="#{{ collapse_area }}">
+ &#x2193;
+ </a>
+ {% endif %}
+ </h2>
+ </hgroup>
+ </header>
+{% endmacro %}
+
+{# make session header macro #}
+{% macro mk_session_header(session) %}
+ <header class="program-session-header">
+ <hgroup>
+ <h2>{{ session }}</h2>
+ </hgroup>
+ </header>
+{% endmacro %}
+
+{# desc macro #}
+{% macro desc(disc_list) %}
+ {% for desc_p in disc_list %}
+ <p>{{ desc_p }}</p>
+ {% endfor %}
+{% endmacro %}
+
+{# populate sessions macro #}
+{% macro populate_sessions(sessions, day_index, timeslot_index) %}
+ {% for session, session_info in sessions.iteritems() %} {# session start #}
+ <section id="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}" class="program-session">
+ {{ mk_session_header(session) }}
+ {{ mk_speakers(session_info['speakers']) }}
+ <button class="btn btn-default btn-xs"
+ data-toggle="collapse" aria-expanded="false"
+ aria-controls="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse"
+ data-target="#day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse">
+ Details
+ </button>
+ <div class="collapse in"
+ id="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse">
+ {{ mk_room(session_info['room']) }}
+ {{ desc(session_info['desc']) }}
+ </div> <!-- day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse end -->
+ </section> <!-- day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }} end -->
+ {% endfor %} {# session end #}
+{% endmacro %}
+
+{# populate timeslots macro #}
+{% macro populate_timeslots(timeslots, day_index) %}
+ {% for timeslot, sessions in timeslots.iteritems() %} {# timeslot start #}
+ <article id="day-{{ day_index }}-timeslot-{{ loop.index }}" class="program-timeslot">
+ {{ mk_timeslot_header(timeslot, sessions|length > 0, "day-%d-timeslot-%d-sessions"|format(day_index, loop.index)) }}
+ {% if sessions|length > 0 %}
+ <div class="collapse in"
+ id="day-{{ day_index }}-timeslot-{{ loop.index }}-sessions">
+ {{ populate_sessions(sessions, day_index, loop.index) }}
+ </div> <!-- day-{{ day_index }}-timeslot-{{ loop.index }}-sessions end -->
+ {% endif %}
+ </article> <!-- day-{{ day_index }}-timeslot-{{ loop.index }} end -->
+ {% endfor %} {# timeslot start #}
+{% endmacro %}
+
+{# lp 2016 template start #}
+{% for day, timeslots in schedule.iteritems() %} {# day start #}
+ <article id="day-{{ loop.index }}-program" class="program-day">
+ {{ mk_day_header(day, "day-%d-timeslots"|format(loop.index)) }}
+ <div class="collapse in" id="day-{{ loop.index }}-timeslots">
+ {{ populate_timeslots(timeslots, loop.index) }}
+ </div> <!-- day-{{ loop.index }}-timeslots end -->
+ </article> <!-- day-{{ loop.index }} end -->
+{% endfor %} {# day loop end #}