34 lines
924 B
HTML
34 lines
924 B
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Meetings - Edit{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../../">Meetings</a>
|
|
» <a href="../">{{ meeting.number }}</a>
|
|
» Edit
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="module">
|
|
<form action="." method="post">{% csrf_token %}
|
|
<h2>Meetings - Edit</h2>
|
|
<table id="proceedings-edit-table">
|
|
<tbody>
|
|
<!-- [html-validate-disable-block element-required-attributes -- FIXME: as_table renders without scope] -->
|
|
{{ form.as_table }}
|
|
</tbody>
|
|
</table>
|
|
{% include "includes/buttons_save_cancel.html"%}
|
|
|
|
</form>
|
|
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|