From 4322bdaa6afd7275fc3d5d7a94598a06b12b40a1 Mon Sep 17 00:00:00 2001 From: Ryan Cross Date: Thu, 29 Nov 2018 18:21:40 +0000 Subject: [PATCH] Add missing template. Remove unused templates. Comit ready for merge. - Legacy-Id: 15791 --- ietf/secr/templates/meetings/schedule.html | 108 --------------------- ietf/secr/templates/meetings/select.html | 52 ---------- ietf/secr/templates/meetings/sessions.html | 51 ++++++++++ 3 files changed, 51 insertions(+), 160 deletions(-) delete mode 100644 ietf/secr/templates/meetings/schedule.html delete mode 100644 ietf/secr/templates/meetings/select.html create mode 100644 ietf/secr/templates/meetings/sessions.html diff --git a/ietf/secr/templates/meetings/schedule.html b/ietf/secr/templates/meetings/schedule.html deleted file mode 100644 index 6005291d9..000000000 --- a/ietf/secr/templates/meetings/schedule.html +++ /dev/null @@ -1,108 +0,0 @@ -{% extends "base_site.html" %} -{% load staticfiles %} - -{% block title %}Meetings{% endblock %} - -{% block extrahead %}{{ block.super }} - - - -{% endblock %} - -{% block breadcrumbs %}{{ block.super }} - » Meetings - » {{ meeting.number }} - » {{ schedule.name }} - » Select - » {{ group.acronym }} -{% endblock %} - -{% block content %} - -
-

Requested Information

- - {% if show_request %} - {% include "includes/sessions_request_view.html" %} - {% endif %} - -
-

Sessions

- -
{% csrf_token %} - {{ formset.management_form }} - {% for form in formset.forms %} -
-

Session:  #{{ forloop.counter }}{% if form.session_object.status.slug == 'apprw' %}Waiting for Approval{% endif %}

- - - {{ form }} -
-
- {% endfor %} -
- -
-
    -
  • -
  • -
  • -
-
- - - -
- -{% endblock %} - -{% block footer-extras %} - {% include "includes/meetings_footer.html" %} -{% endblock %} - - - - - - - - - - - - - - - - - - - - - diff --git a/ietf/secr/templates/meetings/select.html b/ietf/secr/templates/meetings/select.html deleted file mode 100644 index 06a11171b..000000000 --- a/ietf/secr/templates/meetings/select.html +++ /dev/null @@ -1,52 +0,0 @@ -{% extends "base_site.html" %} -{% load staticfiles %} - -{% block title %}Meetings{% endblock %} - -{% block extrahead %}{{ block.super }} - -{% endblock %} - -{% block breadcrumbs %}{{ block.super }} - » Meetings - » {{ meeting.number }} - » {{ schedule.name }} -{% endblock %} - -{% block content %} - -
-

IETF {{ meeting.number }}

- -
-
    -
  • -
  • -
  • -
-
- -
- -{% endblock %} - - - - - - - - - - - - - - - - - - - - - diff --git a/ietf/secr/templates/meetings/sessions.html b/ietf/secr/templates/meetings/sessions.html new file mode 100644 index 000000000..ecd57c8c9 --- /dev/null +++ b/ietf/secr/templates/meetings/sessions.html @@ -0,0 +1,51 @@ +{% extends "meetings/base_rooms_times.html" %} +{% load bootstrap3 %} + +{% block subsection %} + +
+

Sessions

+ + + + + + + + + + + + + + + {% for session in sessions %} + + + + + + + + + + {% endfor %} + +
GroupTimeRoomAgenda NoteStatus
{{ session.group.acronym }} + {% if session.official_timeslotassignment %} + {{ session.official_timeslotassignment.timeslot.time|date:"l H:i"|default:"" }} + {% endif %} + + {% if session.official_timeslotassignment %} + {{ session.official_timeslotassignment.timeslot.location }} + {% endif %} + {{ session.agenda_note }}{{ session.status }}Edit +
+ {% csrf_token %} + + +
+
+
+ +{% endblock %}