{% extends "base_site.html" %}
{% load staticfiles %}

{% block title %}Meetings - Add{% endblock %}

{% block extrahead %}
    {{ block.super }}
    <script src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}

{% block breadcrumbs %}{{ block.super }}
    &raquo; <a href="../">Meetings</a>
    &raquo; Add
{% endblock %}

{% block content %}
    <div  class="module">
        <h2>Proceedings - Add</h2>
        <form id="proceedings-add-form" enctype="multipart/form-data" method="post">{% csrf_token %}
            <table id="proceedings-add-table">
                <tbody>
                <!-- [html-validate-disable-block element-required-attributes, no-redundant-for -- FIXME: as_table renders without scope] -->
                {{ form.as_table }}
                </tbody>
            </table>
            {% include "includes/buttons_save_cancel.html"%}
        </form>
    </div> <!-- module -->

{% endblock %}