From 582cfd48fb3ea49252c09bc5613b149b14e7b069 Mon Sep 17 00:00:00 2001 From: Peter Yee Date: Tue, 15 Jul 2025 10:14:04 -0700 Subject: [PATCH 1/2] feat: Add "IESG" group at top of Groups menu Creates an IESG group at the top of the Group dropdown menu that points at https://datatracker.ietf.org/group/iesg/about/. Maybe that value shouldn't be hardcoded into menu.html. This feature is in response to issue #9018. --- ietf/templates/base/menu.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 3ae0d3dc57..269910b722 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -19,7 +19,10 @@ Groups {% endif %} - {% if flavor == 'top' %}{% endif %} + {% if flavor == 'top' %} +
  • IESG
  • + + {% endif %} {% wg_menu flavor %}
  • Date: Sat, 19 Jul 2025 10:42:03 +0200 Subject: [PATCH 2/2] feat: Add "IESG" group at top of Groups menu This feature is in response to issue #9018. This commit is an update to the original commit to add proper support for the left menu and use a non-hardcoded URL for the IESG. --- ietf/templates/base/menu.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ietf/templates/base/menu.html b/ietf/templates/base/menu.html index 269910b722..81f012a679 100644 --- a/ietf/templates/base/menu.html +++ b/ietf/templates/base/menu.html @@ -19,10 +19,8 @@ Groups
  • {% endif %} - {% if flavor == 'top' %} -
  • IESG
  • - - {% endif %} +
  • IESG
  • + {% if flavor == 'top' %}{% endif %} {% wg_menu flavor %}