30 lines
778 B
HTML
Executable file
30 lines
778 B
HTML
Executable file
{% extends "base_site.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}Sessions{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» Sessions (Locked)
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>» <a href="{% url 'ietf.meeting.views.meeting_requests' %}">View list of timeslot requests</a></p>
|
|
<div class="module interim-container">
|
|
<h2>Sessions - Status</h2>
|
|
|
|
<p>{{ message }}</p>
|
|
|
|
<div class="button-group">
|
|
<ul>
|
|
<li><button type="button" onclick="window.location='../'">Back</button></li>
|
|
</ul>
|
|
</div> <!-- button-group -->
|
|
|
|
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %} |