{% import 'report.html' as report %} Meetup Event Changes on Xibo Signs

Program Execution

{% if counters %} {% for name, count in counters %} {% endfor %}
Version Count
{{ name }} {{ count|safe }}
{% else %}

None

{% endif %} {% if has_conflicts %}

Schedule Conflicts

{% for place, conflicts in conflict_places %}

{{ place }}

{% for conflict in conflicts %}

{% if conflict.is_critical %} Today: {% endif %} {{ conflict.start_time }} to {{ conflict.end_time }}

{% endfor %} {% endfor %} {% endif %} {% if current_event_logs %}

Changes to Xibo Current and Future Event Listings

{% for event_log in current_event_logs %}
{{ report.linked_event_display(event_log.final_event) }}
{% for log_line in event_log.log_lines %} {{ report.log_line_display(log_line, event_log.final_event) }} {% endfor %}
{% endfor %}
{% endif %} {% if past_event_logs %}

Changes to Xibo Past Event Listings

{% for event_log in past_event_logs %}
{{ report.linked_event_display(event_log.final_event) }}
{% for log_line in event_log.log_lines %} {{ report.log_line_display(log_line, event_log.final_event) }} {% endfor %}
{% endfor %}
{% endif %} {% if unneeded_meetup_ids %}

Suppressed Meetup Event IDs Not Needed

{% endif %} {# vim: set tabstop=8 expandtab shiftwidth=4 softtabstop=4 autoindent: #}