the possible agendas list for a meeting. The new page incorporates the editing functionality otherwise accessible from /secr/meetings/<meeting>/<schedule>/miscsessions/ /secr/meetings/<meeting>/<schedule>/regularsessions/ /meeting/<meeting>/timeslots/edit in a time vs. room grid that gives a better overview of what's going on each day and allows adding and editing time slots and sessions. Regular sessions must be scheduled in the other schedule editor, but it's possible to add regular timeslots and edit agenda notes on scheduled regular sessions. - Legacy-Id: 18379
17 lines
559 B
HTML
17 lines
559 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}IETF {{ meeting.number }} Meeting Agenda: {{ schedule.owner }} / {{ schedule.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<div id="read_only">
|
|
<p>You do not have access this agenda. It belongs to {{ schedule.owner }}.</p>
|
|
|
|
<p><a href="{% url "ietf.meeting.views.list_schedules" meeting.number %}">Other agendas for this meeting</a>.</p>
|
|
|
|
<div class="wrapper custom_text_stuff"></div>
|
|
</div>
|
|
{% endblock %}
|