31 lines
906 B
HTML
Executable file
31 lines
906 B
HTML
Executable file
{% extends "meetings/base_rooms_times.html" %}
|
|
|
|
{% block subsection %}
|
|
|
|
<div class="module interim-container">
|
|
<h2>Meeting - {{ meeting }}</h2>
|
|
<p><h3>Session: {{ slot.name }}</h3></p>
|
|
<form id="misc-session-edit-form" enctype="multipart/form-data" action="." method="post">{% csrf_token %}
|
|
<table class="full-width amstable">
|
|
{{ form.as_table }}
|
|
</table>
|
|
|
|
<div class="button-group">
|
|
<ul>
|
|
<li><button type="submit" name="submit" value="Save">Save</button></li>
|
|
<li><button type="submit" name="submit" value="Back">Back</button></li>
|
|
</ul>
|
|
</div> <!-- button-group -->
|
|
|
|
</form>
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
{{ form.media.js }}
|
|
{% endblock %}
|
|
{% block extrastyle %}
|
|
{{ form.media.css }}
|
|
{% endblock %} |