diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/useful-links.html.tmpl | 8 | ||||
-rw-r--r-- | template/en/default/index.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/sidebar.xul.tmpl | 2 |
3 files changed, 11 insertions, 3 deletions
diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl index c04b60dd6..7e568372c 100644 --- a/template/en/default/global/useful-links.html.tmpl +++ b/template/en/default/global/useful-links.html.tmpl @@ -52,8 +52,12 @@ [% IF user.login %] [% ' | <a href="sanitycheck.cgi">Sanity check</a>' IF user.groups.tweakparams %] - | <a href="relogin.cgi">Log out</a> - [% user.login FILTER html %] + [% IF user.get_flag('can_logout') %] + | <a href="relogin.cgi">Log out</a> + [% ELSE %] + | Logged in as + [% END %] + [% user.login FILTER html %] [% ELSE %] [% IF Param('createemailregexp') %] | <a href="createaccount.cgi">New Account</a> diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 5422061fd..d31a51d89 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -66,7 +66,9 @@ function addSidebar() { </p><p> [% IF user.id %] <a href="userprefs.cgi">Change password or user preferences</a><br> - <a href="relogin.cgi">Logout [% user.login FILTER html %]</a><br> + [% IF user.get_flag('can_logout') %] + <a href="relogin.cgi">Logout [% user.login FILTER html %]</a><br> + [% END %] [% ELSE %] <a href="query.cgi?GoAheadAndLogIn=1">Log in to an existing account</a><br> [% IF Param('createemailregexp') %] diff --git a/template/en/default/sidebar.xul.tmpl b/template/en/default/sidebar.xul.tmpl index 60ae33dbd..802fd9f23 100644 --- a/template/en/default/sidebar.xul.tmpl +++ b/template/en/default/sidebar.xul.tmpl @@ -95,7 +95,9 @@ function normal_keypress_handler( aEvent ) { [%- IF user.groups.tweakparams %] <text class="text-link" onclick="load_relative_url('sanitycheck.cgi')" value="sanity check"/> [%- END %] + [%- IF user.get_flag('can_logout') %] <text class="text-link" onclick="load_relative_url('relogin.cgi')" value="logout [% user.login FILTER html %]"/> + [%- END %] <separator class="thin"/> [%- IF user.showmybugslink %] [% filtered_username = user.login FILTER url_quote %] |