Name:
  <%= @certification.name %>
  Description:
  <%= simple_format @certification.description %>
Certified Users:
  <% @certification_users.each do |user| %>
      - <%= link_to user.name, user %><% end %>
  <% if @certification_users.blank? then %>
- n/a<% end %>
<% if can? :update, @certification %><%= link_to 'Edit', edit_certification_path(@certification) %> |<% end %>
<%= link_to 'Back', certifications_path %>