diff --git a/ietf/group/views.py b/ietf/group/views.py
index 40936a67f..0394839e0 100644
--- a/ietf/group/views.py
+++ b/ietf/group/views.py
@@ -355,6 +355,8 @@ def construct_group_menu_context(request, group, selected, group_type, others):
             entries.append(("List archive", urlreverse("ietf.group.views.derived_archives", kwargs=kwargs)))
         else:
             entries.append((mark_safe("List archive »"), group.list_archive))
+    if group.has_tools_page():
+        entries.append((mark_safe("Tools »"), "https://tools.ietf.org/%s/%s/" % (group.type_id, group.acronym)))
 
     # actions
     actions = []
diff --git a/ietf/templates/group/group_about.html b/ietf/templates/group/group_about.html
index 18f04f664..f1d985814 100644
--- a/ietf/templates/group/group_about.html
+++ b/ietf/templates/group/group_about.html
@@ -95,15 +95,11 @@
       {% endif %}
 
       {% with group.groupurl_set.all as urls %}
-        {% if urls or group.has_tools_page %}
+        {% if urls %}
 	<tr>
           <td></td>
           <th>More info</th>
           <td>
-	    {% if group.has_tools_page %}	     
-              <a href="https://tools.ietf.org/{{ group.type_id }}/{{ group.acronym }}/">Tools page</a>
-	      {% if urls %}<br>{% endif %}
-	    {% endif %}
             {% for url in urls %}
               <a href="{{ url.url }}">{% firstof url.name url.url %}</a>{% if not forloop.last %}<br>{% endif %}
             {% endfor %}