summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.haml
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-23 13:11:03 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-23 13:11:03 +0100
commitf67005b1bcbf4b0049b8d60dfcc669bd98745a49 (patch)
treef77ce57f87dc05658a1cbb5344362a1a6c75756b /app/views/users/show.html.haml
parent49fbe38357104162c8658688e07bae00bbf1c4e0 (diff)
UI
Diffstat (limited to 'app/views/users/show.html.haml')
-rw-r--r--app/views/users/show.html.haml18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml
index 4c39fd1..f38a4a1 100644
--- a/app/views/users/show.html.haml
+++ b/app/views/users/show.html.haml
@@ -4,12 +4,18 @@
.span3
- cache(['user_show_aside', I18n.locale, @user, @user.sip_accounts, @user.conferences]) do
= image_tag @user.image_url(:small).to_s, :class => 'img-rounded' if @user.image? && @user.image_url(:small)
- %p
- %strong= t('users.show.user_name') + ":"
- = @user.user_name
- %p
- %strong= t('users.show.email') + ":"
- = @user.email
+ %table{:class => 'table table-striped'}
+ %tbody
+ %tr
+ %td
+ %strong= t('users.show.user_name') + ":"
+ %td
+ = @user.user_name
+ %tr
+ %td
+ %strong= t('users.show.email') + ":"
+ %td
+ = @user.email
%p.controls
= render :partial => 'shared/show_edit_destroy_part', :locals => { :parent => @tenant, :child => @user }