diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2016-04-04 17:29:38 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-03 18:39:03 +0100 |
commit | d04fbb80a9bf5d62dae669468c2c13045e8de5c1 (patch) | |
tree | f2d54c0a95e57c7ef899b47e904b13b9577675bc /templates/web/base/footer.html | |
parent | 50c61f97568b59d6430c32fdcde7b76ac9f6f6f3 (diff) |
Remove user-meta; "Your reports" to "Your account"
Diffstat (limited to 'templates/web/base/footer.html')
-rw-r--r-- | templates/web/base/footer.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/footer.html b/templates/web/base/footer.html index c10d9c008..d046d6297 100644 --- a/templates/web/base/footer.html +++ b/templates/web/base/footer.html @@ -23,7 +23,7 @@ >[% loc("Report a problem") %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/my' %]span[% ELSE %]a href="[% base %]/my"[% END - %]>[% loc("Your reports") %]</[% c.req.uri.path == '/my' ? 'span' : 'a' %]></li>[% + %]>[% c.user_exists ? loc("Your account") : loc("Sign in") %]</[% c.req.uri.path == '/my' ? 'span' : 'a' %]></li>[% %]<li><[% IF c.req.uri.path == '/reports' %]span[% ELSE %]a href="[% base %]/reports"[% END %]>[% loc("All reports") %]</[% c.req.uri.path == '/reports' ? 'span' : 'a' %]></li>[% |