More HTML fixes. - Legacy-Id: 9787 Note: SVN reference [9766] has been migrated to Git commit 77f555bdbdfa653e4b5a0589ead9eda6632f10d7
17 lines
517 B
HTML
17 lines
517 B
HTML
{% extends "nomcom/nomcom_private_base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block subtitle %}- Delete NomCom{% endblock %}
|
|
|
|
{% block nomcom_content %}
|
|
{% origin %}
|
|
<p class="alert alert-warning">Are you sure you want to delete all data about {{ nomcom.group.name }}?</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="post" value="yes">
|
|
<input class="btn btn-danger" type="submit" value="Yes, I'm sure">
|
|
</form>
|
|
{% endblock %}
|