{% extends "base.html" %} {# Copyright The IETF Trust 2020, All Rights Reserved #} {% load origin %} {% load ietf_filters %} {% load bootstrap3 %} {% block content %} {% origin %}

{% block title %}Differences between Meeting Agendas for IETF {{ meeting.number }}{% endblock %}

{% bootstrap_form form %}
{% if diffs != None %}

Differences from {{ from_schedule.name }} ({{ from_schedule.owner }}) to {{ to_schedule.name }} ({{ to_schedule.owner }})

{% if diffs %} {% for d in diffs %} {% endfor %}
{% if d.change == 'schedule' %} Scheduled {{ d.session.session_label }} to {{ d.to.time|date:"l G:i" }} at {{ d.to.location.name }} {% elif d.change == 'move' %} Moved {{ d.session.session_label }} from {{ d.from.time|date:"l G:i" }} at {{ d.from.location.name }} to {{ d.to.time|date:"l G:i" }} at {{ d.to.location.name }} {% elif d.change == 'unschedule' %} Unscheduled {{ d.session.session_label }} from {{ d.from.time|date:"l G:i" }} at {{ d.from.location.name }} {% endif %}
{% else %} No differences in scheduled sessions found! {% endif %} {% endif %} {% endblock content %}