cerrado @ ef05f233903fe896ff60c8a8759deac6cc0e7366

ref: Remove restriction to show commit ref

This should make easier to locate where we are at.
 1diff --git a/templates/navbar.qtpl b/templates/navbar.qtpl
 2index c222171ddfc0bb551a4021c7a2da1600fdd80dc6..7a0731941016defafa80b0a79de78a5ecb28d6ad 100644
 3--- a/templates/navbar.qtpl
 4+++ b/templates/navbar.qtpl
 5@@ -51,7 +51,7 @@ {% endfunc %}
 6 
 7 {% func GitItemNav (name, ref string, s GitSelection) %}
 8 <div class="row">
 9-    <h3 id="name">{%s name %} {% if ref != "" && (s == Log || s == Tree)  %}@ {%s ref %}{% endif %}</h3>
10+    <h3 id="name">{%s name %} {% if ref != ""  %}@ {%s ref %}{% endif %}</h3>
11 </div>
12 <div class="row">
13   <ul class="nav">
14diff --git a/templates/navbar.qtpl.go b/templates/navbar.qtpl.go
15index 47573a70617e22f27872a0cf186414ecd7867dad..0a41d5651ff3f0fb06f94f1b1e7db9046676ec47 100644
16--- a/templates/navbar.qtpl.go
17+++ b/templates/navbar.qtpl.go
18@@ -176,7 +176,7 @@ 	qw422016.E().S(name)
19 //line templates/navbar.qtpl:54
20 	qw422016.N().S(` `)
21 //line templates/navbar.qtpl:54
22-	if ref != "" && (s == Log || s == Tree) {
23+	if ref != "" {
24 //line templates/navbar.qtpl:54
25 		qw422016.N().S(`@ `)
26 //line templates/navbar.qtpl:54