Sha256: f1e7750465f830a2a38652821302000b6058f69b2b190cc3cac666b3bf2dc8cd

Contents?: true

Size: 1.26 KB

Versions: 23

Compression:

Stored size: 1.26 KB

Contents

<% content_for :body do %>
  <%= render partial: 'naf/shared/information_container', locals: { record_name: naf_table_title } %>

  <div id="flash_message">
      <% unless notice.blank? %>
        <script type='text/javascript'>
          jQuery("<p id='notice'><%= notice %></p>")
              .appendTo('#flash_message')
              .slideDown().delay(5000).slideUp();
        </script>
      <% end %>
  </div>
  <br>

  <table id='datatable'>
    <thead>
      <tr>
        <% @cols.each do |col| %>
          <th id="<%= col %>"><%= naf_make_header(col) %></th>
        <% end %>
      </tr>
    </thead>
    <tbody>
      <% @rows.each do |row| %>
        <tr>
          <% @cols.each do |col| %>
            <td>
              <% if col == :id %>
                <%= link_to row.id, { action: 'show', id: row.id, controller: controller_name } %>
              <% else %>
                <%= row.send(col) %>
              <% end %>
            </td>
          <% end %>
        </tr>
      <% end %>
    </tbody>
  </table>

  <% content_for :javascripts do %>
    <script type='text/javascript'>
      jQuery(document).ready(function() {
        jQuery('#datatable').addDataTable({});
      });
    </script>
  <% end %>
<% end %>

<%= render partial: 'naf/shared/application' %>

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
naf-2.1.13 app/views/naf/datatable.html.erb
naf-2.1.12 app/views/naf/datatable.html.erb
naf-2.1.11 app/views/naf/datatable.html.erb
naf-2.1.10 app/views/naf/datatable.html.erb
naf-2.1.9 app/views/naf/datatable.html.erb
naf-2.1.8 app/views/naf/datatable.html.erb
naf-2.1.6 app/views/naf/datatable.html.erb
naf-2.1.5 app/views/naf/datatable.html.erb
naf-2.1.4 app/views/naf/datatable.html.erb
naf-2.1.3 app/views/naf/datatable.html.erb
naf-2.1.2 app/views/naf/datatable.html.erb
naf-2.1.1 app/views/naf/datatable.html.erb
naf-2.1.0 app/views/naf/datatable.html.erb
naf-2.0.4 app/views/naf/datatable.html.erb
naf-2.0.3 app/views/naf/datatable.html.erb
naf-2.0.2 app/views/naf/datatable.html.erb
naf-2.0.1 app/views/naf/datatable.html.erb
naf-2.0.0 app/views/naf/datatable.html.erb
naf-1.1.4 app/views/naf/datatable.html.erb
naf-1.1.3 app/views/naf/datatable.html.erb