diff options
author | Azul <azul@leap.se> | 2013-01-18 07:44:57 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-01-18 07:44:57 +0100 |
commit | 27730c7e665ed64e691fdf6dbeebc39c8bfbbc4b (patch) | |
tree | cd1df0a9a7d3f0a9812b512cfb93db0f79b0421f /help/app/views/tickets/_comment.html.haml | |
parent | 247a6f14db14543773beb1a1e96f2c335800eb82 (diff) | |
parent | 19d563e2e2db98ecc5143229f554df6a09bc457e (diff) |
Merge remote-tracking branch 'origin/master' into feature/fixed-email-address
Conflicts:
users/app/views/emails/_email.html.haml
Diffstat (limited to 'help/app/views/tickets/_comment.html.haml')
-rw-r--r-- | help/app/views/tickets/_comment.html.haml | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/help/app/views/tickets/_comment.html.haml b/help/app/views/tickets/_comment.html.haml index 1d8ee41..501ceec 100644 --- a/help/app/views/tickets/_comment.html.haml +++ b/help/app/views/tickets/_comment.html.haml @@ -1,16 +1,20 @@ - # style is super ugly but just for now -%tr - %td - - if commenter = User.find(comment.posted_by) - %b - = 'Posted by' + (commenter.is_admin? ? ' admin' : '') + ':' - = commenter.login - - else - %b - Unauthenticated post - .pull-right - %b - Posted at: - = comment.posted_at.to_s(:short) - %br - = comment.body +- if admin? or !comment.private # only show comment if user is admin or comment is not private + %tr + %td + - if comment.posted_by_user + %b + = 'Posted by' + (comment.posted_by_user.is_admin? ? ' admin' : '') + ':' + = comment.posted_by_user.login + - else + %b + Unauthenticated post + - if comment.private + (Private comment) + .pull-right + %b + Posted at: + = comment.posted_at.to_s(:short) + %br + = comment.body + |