Sha256: 91f8532cf824227e72d84ac6f3c6c36d9ba5f2eb96cda7475e20f8bcb2a829e6

Contents?: true

Size: 976 Bytes

Versions: 4

Compression:

Stored size: 976 Bytes

Contents

<div id='actions'>
  <ul>
    <li>
      <%= link_to t('.new'), new_admin_refinery_setting_url(:dialog => true, :width => 725, :height => 475), :class => "add_icon" %>
    </li>
  </ul>
</div>
<div id='records'>
  <% if @refinery_settings.any? %>
    <%= will_paginate @refinery_settings, :previous_label => '&laquo;', :next_label => '&raquo;' %>
    <ul>
      <%= render :partial => 'refinery_setting', :collection => @refinery_settings %>
    </ul>
    <%= will_paginate @refinery_settings, :previous_label => '&laquo;', :next_label => '&raquo;' %>
  <% else %>
    <p>
      <strong>
        <%= t('.empty_set') %>
        <%= t('.create_first', :link => t('.new')) %>
      </strong>
    </p>
  <% end %>
</div>
<% content_for :head do %>
  <script type='text/javascript'>
    $(document).ready(function() {
      $('#records ul li .actions a[href*=edit]').each(function(i, li) {
        $(li).attr('name', $(li).attr('tooltip'));
      });
    });
  </script>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
refinerycms-0.9.8.3 vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb
refinerycms-0.9.8.2 vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb
refinerycms-0.9.8.1 vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb
refinerycms-0.9.8 vendor/refinerycms/settings/app/views/admin/refinery_settings/index.html.erb