Sha256: ae6ed8f4bffcf717c4c06e5b0b0bbc61fb53718c1153d1ca6a2fcaeef72dac39

Contents?: true

Size: 1.72 KB

Versions: 2

Compression:

Stored size: 1.72 KB

Contents

<%- if pagination? %>
<%%= paginate @<%= plural_table_name %>, :remote => remote %>
<%- end %>
<div class="separator"></div>

<table class='user' cellspacing='0'>
  <thead>
  <tr>
<%- attributes.each do |attribute| -%>
<%- attr_name = case attribute.type when :references, :belongs_to then "#{attribute.name}_id" else attribute.name end -%>
    <th><%%= sortable :<%= attr_name %>, t('attributes.<%= singular_table_name %>.<%= attribute.name %>'), remote %></th>
<%- end -%>
    <th></th>
    <th></th>
    <th></th>
  </tr>
  </thead>
  <tbody>
<%% @<%= plural_table_name %>.each do |<%= singular_table_name %>| -%>
  <tr id="tr<%%= <%= singular_table_name %>.id %>" class="<%%= cycle("odd", "even")%>">
<%- attributes.each do |attribute| -%>
    <td><%= attribute_to_erb(attribute, singular_table_name) -%></td>
<%- end -%>
    <!-- Manage section, do not remove this tag -->
    <td><%%= link_to t(:show), <%= show_resource_path %><%= ", :remote => remote" if jquery_ui? %> %></td>
    <%- if authorization? -%>
    <%%- if can? :update, <%= singular_table_name %> -%>
    <%- end -%>
    <td><%%= link_to t(:edit), <%= edit_resource_path %> %></td>
    <%- if authorization? -%>
    <%%- end -%>
    <%- end -%>
    <%- if authorization? -%>
    <%%- if can? :destroy, <%= singular_table_name %> -%>
    <%- end -%>
    <td><%%= link_to t(:destroy), <%= destroy_resource_path %>, <%= key_value :confirm, "t(:sure?)" %>, <%= key_value :method, ":delete" %>, :remote => remote %></td>
    <%- if authorization? -%>
    <%%- end -%>
    <%- end -%>
  </tr>
<%% end -%>
  </tbody>
</table>

<div class="separator"></div>
<%- if pagination? -%>
<%%= paginate @<%= plural_table_name %>, :remote => remote %>
<%- end -%>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
leonardo-1.8.1 lib/generators/erb/leosca/templates/_list.erb
leonardo-1.8.0 lib/generators/erb/leosca/templates/_list.erb