forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.html
More file actions
27 lines (22 loc) · 749 Bytes
/
add.html
File metadata and controls
27 lines (22 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% 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 }}
» <a href="../">Meetings</a>
» Add
{% endblock %}
{% block content %}
<div class="module">
<h2>Proceedings - Add</h2>
<form id="proceedings-add-form" enctype="multipart/form-data" action="" method="post">{% csrf_token %}
<table id="proceedings-add-table">
{{ form.as_table }}
</table>
{% include "includes/buttons_save_cancel.html"%}
</form>
</div> <!-- module -->
{% endblock %}