Sha256: 10a6c401eeddc83ea745ff5d1cba58194f83e169b50d9f15a58a5d4c0aacc2e0

Contents?: true

Size: 743 Bytes

Versions: 11

Compression:

Stored size: 743 Bytes

Contents

<%= form_tag update_multiple_rails_info_data_path, method: :post do %>
  <%= @rails_info_data.actions %>
  <%= @rails_info_data.last_objects do |row_set_presenter| %>
    <h3><%= row_set_presenter.name %></h3>
    <div style="max-height:150px; width:100%; overflow: auto">
      <table class="table table-striped">
        <thead>
          <tr class="<%= cycle("odd", "even") %>">
            <%= row_set_presenter.head %>
          </tr>
        </thead>
        <tbody>
    <% row_set_presenter.objects.each do |object_presenter| %>
      <tr class="<%= cycle("odd", "even") %>">
        <%= object_presenter.row %>
      </tr>
    <% end %>
        </tbody>
      </table>
    </div>
  <% end %>
  <%= @rails_info_data.actions %>
<% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rails_info-0.1.1 app/views/rails_info/data/index.html.erb
rails_info-0.1.0 app/views/rails_info/data/index.html.erb
rails_info-0.0.9 app/views/rails_info/data/index.html.erb
rails_info-0.0.8 app/views/rails_info/data/index.html.erb
rails_info-0.0.7 app/views/rails_info/data/index.html.erb
rails_info-0.0.6 app/views/rails_info/data/index.html.erb
rails_info-0.0.5 app/views/rails_info/data/index.html.erb
rails_info-0.0.4 app/views/rails_info/data/index.html.erb
rails_info-0.0.3 app/views/rails_info/data/index.html.erb
rails_info-0.0.2 app/views/rails_info/data/index.html.erb
rails_info-0.0.1 app/views/rails_info/data/index.html.erb