Refactor to remove dajaxice. Modified the URLs that address schedules: - urls now always start with /agenda, removing the mix of /agenda and /schedule prefixes - urls to a given schedule include the schedule owner (by email address) Corrected issue that prevented deleting sessions. Changed comment mechanism in timeslot_edit.js Migration to change the email address for (System) Fixes bug #1426 Commit ready to merge - Legacy-Id: 8229
57 lines
2.3 KiB
HTML
57 lines
2.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load ietf_filters %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% load humanize %}
|
|
|
|
{% block title %}IETF {{ meeting.number }} Meeting Agenda: Timeslot/Room Availability{% endblock %}
|
|
{% load agenda_custom_tags %}
|
|
{% block pagehead %}
|
|
<link rel='stylesheet' type='text/css' href='/css/jquery-ui-themes/jquery-ui-1.8.11.custom.css' />
|
|
<link rel='stylesheet' type='text/css' href='/css/base2.css' />
|
|
<link rel='stylesheet' type='text/css' href='/css/agenda.css' />
|
|
{% endblock pagehead %}
|
|
|
|
{% block js %}
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery-ui.custom.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.widget.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.droppable.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.sortable.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.accordion.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.draggable.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-1.9.0.custom/jquery.ui.datetime.js'></script>
|
|
|
|
<!-- source (MIT License) http://momentjs.com/ https://github.com/moment/moment/ -->
|
|
<script type='text/javascript' src='/js/moment.min.js'></script>
|
|
|
|
<!-- source (MIT License) : https://github.com/trentrichardson/jQuery-Timepicker-Addon -->
|
|
<script type='text/javascript' src='/js/jquery-ui-timepicker/jquery-ui-timepicker-addon.js'></script>
|
|
<script type='text/javascript' src='/js/jquery-ui-timepicker/jquery-ui-sliderAccess.js.js'></script>
|
|
<link rel='stylesheet' type='text/css' href='/css/jquery-ui-timepicker-addon.css' />
|
|
|
|
<script type='text/javascript' src='/js/spin/dist/spin.min.js'></script>
|
|
|
|
{% endblock js %}
|
|
|
|
|
|
{% block start_content_table %}{% endblock %}
|
|
{% block end_content_table %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="wrapper custom_text_stuff">
|
|
<div style="ui-icon ui-icon-arrow-1-w" id="close_ietf_menubar">
|
|
<
|
|
</div>
|
|
|
|
<div class="room_div">
|
|
|
|
<div id="edit_room_dialog">
|
|
<form action="{{roomsurl}}" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ editroom.as_table }}
|
|
<tr><td><input type="submit" name="editroom" value="editroom"></td></tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|