skill-assessment-app/app/views/admin/profile/view.html.erb
2016-11-22 16:59:54 -06:00

10 lines
287 B
Plaintext

<%
content_for :section_title, "Profile"
content_for :title, "Profile - Skills Assessment Admin"
%>
<p>Name: <%= current_user.name %></p>
<p>email: <%= current_user.email %></p>
<p>Role: <%= current_user.role %></p>
<%= link_to('Edit', admin_edit_profile_path, { class: 'btn' }) %>