Mercurial > hg > mercurial-crew
diff mercurial/templates/gitweb/helptopics.tmpl @ 28235:34c3ea65d6d1
templates: support linking to main help page
Currently, the "helptopics" template assumes it is only used as the
main index and therefore doesn't hyperlink "help" in the navigation
list. Sub-topics will introduce an additional consumer of this
template. So teach the template to hyperlink the "help" navigation
entry when necessary.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 30 Dec 2015 17:26:33 -0700 |
parents | d35ff0b0d0da |
children |
line wrap: on
line diff
--- a/mercurial/templates/gitweb/helptopics.tmpl +++ b/mercurial/templates/gitweb/helptopics.tmpl @@ -21,7 +21,10 @@ <a href="{url|urlescape}bookmarks{sessionvars%urlparameter}">bookmarks</a> | <a href="{url|urlescape}branches{sessionvars%urlparameter}">branches</a> | <a href="{url|urlescape}file{sessionvars%urlparameter}">files</a> | -help +{if(subindex, + '<a href="{url|urlescape}help{sessionvars%urlparameter}">help</a>', + 'help' +)} <br/> </div>