23 lines
858 B
HTML
23 lines
858 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}IETF {{ meeting.number }} Meeting Agenda: {{ schedule.owner }} / {{ schedule.name }}{% endblock %}
|
|
|
|
{% 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 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_agendas" meeting.number %}">List your meetings</a>.</p>
|
|
|
|
<div class="wrapper custom_text_stuff"></div>
|
|
</div>
|
|
{% endblock %}
|