10 lines
287 B
Plaintext
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' }) %>
|