.row.content_area .col-md-12 = link_to 'Create App version', new_admin_mobile_app_app_version_path(@mobile_app), class: 'btn btn-success pull-right' h1.page-title span.fa.fa-mobile | App versions .row.content_area .col-md-12 - if @app_versions.any? = content_tag :table, class: 'table table-striped', id: 'app_versions_list' do tr = content_tag :th, sort_link(@q, :id, 'ID') = content_tag :th, sort_link(@q, :platform) = content_tag :th, 'App' = content_tag :th, 'Version' = content_tag :th, 'Force update' = content_tag :th, '' = content_tag :th, '' = content_tag :th, '' - @app_versions.each do |app_version| tr id=dom_id(app_version) td= app_version.version td= app_version.mobile_app&.platform td= app_version.mobile_app&.app_id td= app_version.version td= app_version.force_update ? 'Yes' : '' td= link_to 'show', admin_mobile_app_app_version_path(@mobile_app, app_version), class: 'btn btn-default btn-sm' td= link_to edit_admin_mobile_app_app_version_path(@mobile_app, app_version), title: 'edit' i.fa.fa-pencil-square-o.message-edit td = link_to raw(''), admin_mobile_app_app_version_path(@mobile_app, app_version), method: :delete, data: {confirm: 'Are you sure ?'}, class: '', title: "Delete" = paginate @app_versions - else i Sorry, no results found.