datatracker/ietf/templates/nomcom/delete_nomcom.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

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 %}