-
Notifications
You must be signed in to change notification settings - Fork 541
feat: Add "IESG" group at top of Groups menu #9144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
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.73%
=======================================
Files 321 321
Lines 41851 41853 +2
=======================================
+ Hits 37134 37139 +5
+ Misses 4717 4714 -3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Thanks Peter - There are changes needed - comments inline. |
@@ -19,7 +19,10 @@ | |||
<span class="fw-bolder">Groups</span> | |||
</li> | |||
{% 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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<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> |
@@ -19,7 +19,10 @@ | |||
<span class="fw-bolder">Groups</span> | |||
</li> | |||
{% endif %} | |||
{% if flavor == 'top' %}<li class="dropdown-header">By area/parent</li>{% endif %} | |||
{% if flavor == 'top' %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
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.