From 285a6b5141526bd1f02acae25cc8638c686a07ac Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 30 Sep 2022 17:50:12 +0300 Subject: [PATCH 1/2] fix: Add reminder to not include ADs in "people who must be present" --- ietf/secr/templates/includes/sessions_request_form.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/secr/templates/includes/sessions_request_form.html b/ietf/secr/templates/includes/sessions_request_form.html index 3071af16c78..b7827de5ceb 100755 --- a/ietf/secr/templates/includes/sessions_request_form.html +++ b/ietf/secr/templates/includes/sessions_request_form.html @@ -27,7 +27,7 @@ {% endfor %} {% endif %} Number of Attendees:{% if not is_virtual %}*{% endif %}{{ form.attendees.errors }}{{ form.attendees }} - People who must be present:{{ form.bethere.errors }}{{ form.bethere }} + People who must be present:{{ form.bethere.errors }}{{ form.bethere }}

You should not include the Area Directors; they wil be added automatically.

Conflicts to Avoid: @@ -121,4 +121,4 @@
  • - + \ No newline at end of file From b4e28479afb19cddcd2fc03ded8e61e5a1b1b6af Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Fri, 30 Sep 2022 17:52:00 +0300 Subject: [PATCH 2/2] Fix typo. --- .../templates/includes/sessions_request_form.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ietf/secr/templates/includes/sessions_request_form.html b/ietf/secr/templates/includes/sessions_request_form.html index b7827de5ceb..6d43447102e 100755 --- a/ietf/secr/templates/includes/sessions_request_form.html +++ b/ietf/secr/templates/includes/sessions_request_form.html @@ -27,7 +27,16 @@ {% endfor %} {% endif %} - + + + +
    Number of Attendees:{% if not is_virtual %}*{% endif %}{{ form.attendees.errors }}{{ form.attendees }}
    People who must be present:{{ form.bethere.errors }}{{ form.bethere }}

    You should not include the Area Directors; they wil be added automatically.

    People who must be present: + {{ form.bethere.errors }} + {{ form.bethere }} +

    + You should not include the Area Directors; they will be added automatically. +

    +
    Conflicts to Avoid: