<%= link_to content_tag(:span, 'add export'), new_export_path, :class => "btn right main add" %>

Exports

<%= will_paginate @exports , :previous_label => '<', :next_label => '>', :inner_window => 2, :outer_window => 0%> <% if @exports.total_entries > @exports.per_page %>
Displaying <%= @exports.offset + 1 %> - <%= @exports.offset + @exports.length %> of <%= pluralize(@exports.total_entries, 'exports') %>
<% end %>
<% @exports.each do |export| %> <% end %>
<%= sortable "export_type" %> <%= sortable "export_to", "Export Desitination" %> <%= sortable "source_schema" %> <%= sortable "destination_schema" %> <%= sortable "table_name" %> <%= sortable "incremental_column" %> <%= sortable "incremental_column_type" %> <%= sortable "max_incremental_value" %> <%= sortable "s3_path" %> <%= sortable "cron" %> Actions
<%= export.export_type %> <%= export.export_to %> <%= export.source_schema %> <%= export.destination_schema %> <%= export.table_name %> <%= export.incremental_column %> <%= export.incremental_column_type %> <%= export.max_incremental_value %> <%= export.s3_path %> <%= export.cron %> <%= link_to 'review', export, :class=> 'action view' %> <%= link_to 'edit', edit_export_path(export), :class => 'action edit' %> <%= link_to 'destroy', export, method: :delete, data: { confirm: 'Are you sure?' }, :class=> 'action delete' %>