You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
631 B
15 lines
631 B
#users
|
|
.cmd
|
|
= action_icon('edit', 'Editar perfil', edit_user_url, :accesskey => 'e') if admin? or @current_user == @user
|
|
=# action_icon 'trash', 'Excluir usuário', user_url, :confirm => 'Tem certeza que deseja excluir?', :method => :delete
|
|
|
|
.card
|
|
%img.avatar{:src => gravatar_url_for(@user.email)}
|
|
%h1.title= h(@user.display_name)
|
|
%p= h(@user.name)
|
|
%p= t(:member_since, :c => @user.created_at.strftime("%d de %B de %Y"))
|
|
%p= t(:last_seen, :c => distance_of_time_in_words(Time.now, @user.last_seen))
|
|
|
|
-# cache(user_path(@user.id)) do
|
|
= @user.description.format_wiki if !@user.description.blank?
|