30 lines
906 B
HTML
30 lines
906 B
HTML
{% extends "base_site.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}Meetings - Add{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ block.super }}
|
|
<script src="{% static 'secr/js/utils.js' %}"></script>
|
|
{% endblock %}
|
|
|
|
{% block breadcrumbs %}{{ block.super }}
|
|
» <a href="../">Meetings</a>
|
|
» 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 wcag/h63, no-redundant-for -- FIXME: as_table renders without scope] -->
|
|
{{ form.as_table }}
|
|
</tbody>
|
|
</table>
|
|
{% include "includes/buttons_save_cancel.html"%}
|
|
</form>
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %} |