diff options
author | Azul <azul@leap.se> | 2012-11-04 17:57:03 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-11-04 17:57:03 +0100 |
commit | c0f92bf9f481463dcaef6f4b30343130a8910a00 (patch) | |
tree | 3ba89c6f38d19a7b96a0ef599b7cb6364ba5821f /users/app/views | |
parent | b92d418ebec6486a9e728c57f38f82d4c3343341 (diff) | |
parent | 19008253d01fd6d7a864e98a7ae5dc216070aee1 (diff) |
Merge branch 'develop' into feature-warden-srp
Conflicts:
Gemfile.lock
users/app/controllers/application_controller.rb
users/leap_web_users.gemspec
Diffstat (limited to 'users/app/views')
-rw-r--r-- | users/app/views/sessions/_nav.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/app/views/sessions/_nav.html.haml b/users/app/views/sessions/_nav.html.haml index a5397bd..204ba88 100644 --- a/users/app/views/sessions/_nav.html.haml +++ b/users/app/views/sessions/_nav.html.haml @@ -1,6 +1,9 @@ -- if current_user +- if logged_in? %li + = 'logged in as ' + current_user.login = link_to t(:logout), logout_path + - if admin? + = 'ADMIN' # obviously not like this - else %li = link_to t(:login), login_path |