2013-01-25 10:50:53 +00:00
|
|
|
<p>
|
|
|
|
<b>User:</b>
|
2013-08-27 05:32:08 +00:00
|
|
|
<%= link_to @user_certification.user.name, @user_certification.user %>
|
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>
|
2013-08-24 09:23:12 +00:00
|
|
|
<b>Updated:</b> by
|
|
|
|
<% if @updated_by.blank? %>
|
|
|
|
#<%= @user_certification.updated_by ||= "nil" %>
|
|
|
|
<% else %>
|
|
|
|
<%= link_to @updated_by.name, @updated_by %>
|
|
|
|
<% end %>
|
2013-01-25 13:52:19 +00:00
|
|
|
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>
|