agenda-libre-ruby/app/views/users/show.html.haml

20 lines
287 B
Plaintext
Raw Normal View History

2019-05-09 17:49:01 +02:00
%h1= User.model_name.human
%fieldset
%p
%b Login:
= @user.login
%p
%b Email:
= @user.email
%p
%b Firstname:
= @user.firstname
%p
%b Lastname:
= @user.lastname
2013-11-14 10:54:09 +01:00
2019-05-09 17:49:01 +02:00
.actions
= link_to 'Edit', edit_user_path(@user)
\|
= link_to 'Back', users_path