Skip to content

Commit

Permalink
fix: reduce database queries when building menues (#6928)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks committed Jan 17, 2024
1 parent 1bcee8b commit 06f496c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ietf/templates/base/menu.html
Expand Up @@ -140,7 +140,7 @@
<li>
<a class="dropdown-item {% if flavor != 'top' %}text-wrap{% endif %}"
href="{% url "ietf.group.views.group_documents" g.acronym %}">
{{ g.acronym }} {{ g.type.slug }} docs
{{ g.acronym }} {{ g.type_id }} docs
</a>
</li>
{% endfor %}
Expand Down Expand Up @@ -309,7 +309,7 @@
<li>
<a class="dropdown-item {% if flavor != 'top' %}text-wrap link-primary{% endif %}"
href="{% url "ietf.group.views.meetings" g.acronym %}">
{{ g.acronym }} {{ g.type.slug }} meetings
{{ g.acronym }} {{ g.type_id }} meetings
</a>
</li>
{% endfor %}
Expand Down

0 comments on commit 06f496c

Please sign in to comment.