15 lines
552 B
HTML
15 lines
552 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 my-3">
|
|
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 %} |