skill-assessment-app/app/views/admin/profile/view.html.erb
2016-08-24 12:53:21 -05:00

9 lines
232 B
Plaintext

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