datatracker/ietf/secr/templates/rolodex/delete.html
Henrik Levkowetz 5f053ad21a Cleaned up the remaining explicit url names, using dotted-paths to view
functions instead.  In all almost 700 changes.
 - Legacy-Id: 12923
2017-02-26 23:21:49 +00:00

30 lines
950 B
HTML

{% extends "base_site.html" %}
{% block title %}Rolodex - Delete{% endblock %}
{% block breadcrumbs %}{{ block.super }}
&raquo; <a href="../../">Rolodex</a>
&raquo; <a href="../">{{ person }}</a>
&raquo; Delete
{% endblock %}
{% block content %}
<h1>Are you sure?</h1>
<p>Are you sure you want to delete the Rolodex Entry "{{ person.name }} ({{ person.id }})"? All of the following related items will be deleted:</p>
<ul><li>Rolodex Entry: <a href="{% url 'ietf.secr.rolodex.views.view' id=person.id %}">{{ person.name }} ({{ person.id }})</a>
<ul>
{% for email in person.email_set.all %}
<li>Email Address: {{ email.address }}</li>
{% endfor %}
{% for role in person.role_set.all %}
<li>{{ role }}</li>
{% endfor %}
</ul>
</li></ul>
<form action="" method="post">{% csrf_token %}
<input type="hidden" name="post" value="yes" />
<input type="submit" value="Yes, I'm sure" />
</form>
{% endblock %}