Summary: Fix a missing hide_menu in agenda edit, also delete some now
unused blocks - Legacy-Id: 8995
This commit is contained in:
parent
0edbca5f76
commit
ea33e0e3b7
|
@ -270,7 +270,8 @@ def edit_agenda(request, num=None, owner=None, name=None):
|
|||
return HttpResponse(render_to_string("meeting/private_agenda.html",
|
||||
{"schedule":schedule,
|
||||
"meeting": meeting,
|
||||
"meeting_base_url":meeting_base_url},
|
||||
"meeting_base_url":meeting_base_url,
|
||||
"hide_menu": True},
|
||||
RequestContext(request)), status=403, content_type="text/html")
|
||||
|
||||
scheduledsessions = get_all_scheduledsessions_from_schedule(schedule)
|
||||
|
|
|
@ -8,9 +8,6 @@
|
|||
{% endfor %}
|
||||
{% endblock morecss %}
|
||||
|
||||
{% 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>
|
||||
|
|
|
@ -72,9 +72,6 @@ promiselist.push(ts_promise);
|
|||
{% 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">
|
||||
|
|
Loading…
Reference in a new issue