2013-01-25 10:50:53 +00:00
|
|
|
<p>
|
|
|
|
<b>User:</b>
|
2013-01-25 13:01:02 +00:00
|
|
|
<%= @user_certification.user.name %>
|
2013-01-25 10:50:53 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Certification:</b>
|
2013-01-25 13:01:02 +00:00
|
|
|
<%= @user_certification.certification.name %>
|
2013-01-25 10:50:53 +00:00
|
|
|
</p>
|
|
|
|
|
2013-01-25 13:52:19 +00:00
|
|
|
<p>
|
|
|
|
<b>Created:</b> by <%= link_to @created_by.name, @created_by unless @created_by.blank? %>
|
|
|
|
at <%= @user_certification.created_at %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<b>Updated:</b> by <%= link_to @updated_by.name, @updated_by unless @updated_by.blank? %>
|
|
|
|
at <%= @user_certification.updated_at %>
|
|
|
|
</p>
|
2013-01-25 10:50:53 +00:00
|
|
|
|
2013-01-25 18:11:39 +00:00
|
|
|
<p>
|
2013-05-03 07:16:02 +00:00
|
|
|
<% if can? :update, @user_certification %>
|
|
|
|
<%= link_to 'Edit', edit_user_certification_path(@user_certification) %> |
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if can? :destroy, @user_certification %>
|
|
|
|
<%= link_to 'Delete', @user_certification, :confirm => "Are you sure you want to destroy this user's certification?", :method => :delete %> |
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= link_to 'Back', user_certifications_path %>
|
2013-01-25 18:11:39 +00:00
|
|
|
</p>
|