feat: Add "IESG" group at top of Groups menu#9144
Merged
Merged
Conversation
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 ietf-tools#9018.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9144 +/- ##
==========================================
+ Coverage 88.72% 88.74% +0.01%
==========================================
Files 321 321
Lines 41851 41853 +2
==========================================
+ Hits 37134 37141 +7
+ Misses 4717 4712 -5 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
|
Thanks Peter - There are changes needed - comments inline. |
rjsparks
requested changes
Jul 16, 2025
| {% endif %} | ||
| {% if flavor == 'top' %}<li class="dropdown-header">By area/parent</li>{% endif %} | ||
| {% if flavor == 'top' %} | ||
| <li><a class="dropdown-item" href="https://datatracker.ietf.org/group/iesg/about/">IESG</a></li> |
Member
There was a problem hiding this comment.
Suggested change
| <li><a class="dropdown-item" href="https://datatracker.ietf.org/group/iesg/about/">IESG</a></li> | |
| <li><a class="dropdown-item" href="{% url "ietf.group.views.group_about" acronym="iesg" %}">IESG</a></li> |
Collaborator
Author
There was a problem hiding this comment.
Thanks for correction. Correction committed.
| </li> | ||
| {% endif %} | ||
| {% if flavor == 'top' %}<li class="dropdown-header">By area/parent</li>{% endif %} | ||
| {% if flavor == 'top' %} |
Member
There was a problem hiding this comment.
This conditional is intended to wrap decorations that only appear in the top menu but not in the left menu. A full menu entry should appear in both.
Collaborator
Author
There was a problem hiding this comment.
A feature I didn't even know exists. Fixed it so IESG appears in both menus.
This feature is in response to issue ietf-tools#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.
rjsparks
approved these changes
Jul 19, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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. (Holler if that's the case.) This feature is in response to issue #9018.