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
31 lines
964 B
HTML
31 lines
964 B
HTML
{% extends "base.html" %}
|
|
{% load ietf_filters %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% load humanize %}
|
|
|
|
{% block morecss %}
|
|
{% for area in area_list %}
|
|
.{{ area.upcase_acronym}}-scheme, .meeting_event th.{{ area.upcase_acronym}}-scheme, #{{ area.upcase_acronym }}-groups, #selector-{{ area.upcase_acronym }} { color:{{ area.fg_color }}; background-color: {{ area.bg_color }} }
|
|
{% endfor %}
|
|
{% endblock morecss %}
|
|
|
|
{% block title %}IETF {{ meeting.number }} Meeting Agenda: {{ schedule.owner }} / {{ schedule.name }}{% endblock %}
|
|
{% load agenda_custom_tags %}
|
|
|
|
{% block start_content_table %}{% endblock %}
|
|
{% block end_content_table %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<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.edit_agendas" meeting.number %}">List your meetings</a>.
|
|
</p>
|
|
<div class="wrapper custom_text_stuff">
|
|
</div>
|
|
|
|
{% endblock %}
|