.row .col-sm-12 .box.bordered-box.dark-border .box-content.box-no-padding .responsive-table .scrollable-area %table.table %thead %tr %th Product %th.hidden-xs Serial Number %th.hidden-xs Registration Code %th Registered On %th %tbody - @registrations.each do |registration| %tr %td = link_to registration.product.name, user_product_registration_path(registration) %td.hidden-xs = registration.serial_number %td.hidden-xs = registration.powerdriver_response %td= registration.created_at.to_date.to_formatted_s(:long) %td .text-right = link_to edit_user_product_registration_path(registration), class: 'btn btn-xs' do %i.icon-edit   Edit -unless @inactive.empty? %h3 Disabled Registrations .row .col-sm-12 .box.bordered-box.dark-border .box-content.box-no-padding .responsive-table .scrollable-area %table.table.inactive %thead %tr %th Product %th.hidden-xs Serial Number %th.hidden-xs Registration Code %th Registered On %th %tbody - @inactive.each do |registration| %tr %td = link_to registration.product.name, user_product_registration_path(registration) %td.hidden-xs = registration.serial_number %td.hidden-xs = registration.powerdriver_response %td= registration.created_at.to_date.to_formatted_s(:long)