From 015242da28a1cf8d5be85577859591f96ebf5828 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 11 Dec 2015 20:56:52 +0000 Subject: [PATCH] Improve guidance on when, and when not, to delete a Position - Legacy-Id: 10584 --- ietf/templates/nomcom/remove_position.html | 26 ++++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/ietf/templates/nomcom/remove_position.html b/ietf/templates/nomcom/remove_position.html index 166f5bf04..03e2bb395 100644 --- a/ietf/templates/nomcom/remove_position.html +++ b/ietf/templates/nomcom/remove_position.html @@ -7,12 +7,24 @@ {% block nomcom_content %} {% origin %}

Position: {{ position }}

-
-
Is open:
-
{{ position.is_open }}
-
-

Do you want to remove it?

+

This position is currently {{position.is_open|yesno:"open,closed"}}.

+

It has {{position.feedback_set.count|default:"no"}} feedback objects associated with it.

+ {% if position.feedback_set.count %} +

+ Unless this is a position created only for testing, deleting it is likely to be harmful. All of the feedback will also be deleted. +

+

+ {% if position.is_open %} + If you are just wanting the position to disappear from the lists available to the community for providing nominations and feedback, instead of deleting the position, edit the position and change is_open to False. + {% else %} + Since the position is closed, it will not appear on the lists available to the community for providing nominations and feedback. + {% endif %} +

+

If this is just a test position, it is ok to delete it.

+ {% else %} +

This position is safe to delete.

+ {% endif %}
{% csrf_token %} @@ -20,8 +32,8 @@ {% buttons %} - No, get me out of here - + + Cancel {% endbuttons %}