datatracker/ietf/secr/templates/groups/add.html
2015-08-01 14:53:59 +00:00

33 lines
797 B
HTML

{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Groups - Add{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../">Groups</a>
&raquo; Add
{% endblock %}
{% block content %}
<div class="module group-container">
<h2>Groups - Add</h2>
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
<table id="groups-table" class="full-width amstable">
<col width="150">
{{ form.as_table }}
</table>
{% include "includes/awp_add_form.html" %}
{% include "includes/buttons_save_cancel.html" %}
</form>
</div> <!-- module -->
{% endblock %}