Skip to content

Commit

Permalink
Make nav title capitalization consistent with other text. Consistentl…
Browse files Browse the repository at this point in the history
…y add

arrows for tabs that navigate away from the site. Shorten some text.
Commit ready for merge.
 - Legacy-Id: 9849
  • Loading branch information
larseggert committed Jul 22, 2015
1 parent 0b99c35 commit b367007
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ietf/group/info.py
Expand Up @@ -298,12 +298,12 @@ def construct_group_menu_context(request, group, selected, group_type, others):
entries.append(("Materials", urlreverse("ietf.group.info.materials", kwargs=kwargs)))
entries.append(("History", urlreverse("ietf.group.info.history", kwargs=kwargs)))
if group.features.has_documents:
entries.append(("Dependency Graph", urlreverse("ietf.group.info.dependencies_pdf", kwargs=kwargs)))
entries.append((mark_safe("Dependency graph »"), urlreverse("ietf.group.info.dependencies_pdf", kwargs=kwargs)))

if group.list_archive.startswith("http:") or group.list_archive.startswith("https:") or group.list_archive.startswith("ftp:"):
entries.append((mark_safe("List Archive »"), group.list_archive))
entries.append((mark_safe("List archive »"), group.list_archive))
if group.has_tools_page():
entries.append((mark_safe("Tools %s Page »" % group.type.name), "https://tools.ietf.org/%s/%s/" % (group.type_id, group.acronym)))
entries.append((mark_safe("Tools page »"), "https://tools.ietf.org/%s/%s/" % (group.type_id, group.acronym)))


# actions
Expand Down

0 comments on commit b367007

Please sign in to comment.