skill-assessment-app/app/views/admin/user/view.html.erb

9 lines
213 B
Plaintext
Raw Normal View History

2016-08-18 18:22:57 -05:00
<%
content_for :section_title, "#{@user.name}"
%>
2016-08-18 15:35:17 -05:00
2016-08-24 12:17:00 -05:00
<p><%= @user.name %></p>
<p><%= mail_to(@user.email) %></p>
<p><%= @user.role %></p>
<%= link_to('Edit', admin_edit_user_path(@user.to_i), { class: 'btn' }) %>