MiraitSystems/enju_trunk

View on GitHub
app/views/donates/index.html.erb

Summary

Maintainability
Test Coverage
<div id="content_detail" class="ui-corner-all">
<h1 class="title"><%= t('page.listing', :model => t('activerecord.models.donate')) -%></h1>
<div id="content_list">

<table class="index">
  <tr>
    <th><%= t('activerecord.models.agent') -%></th>
    <th><%= t('activerecord.attributes.manifestation.original_title')-%></th>
    <th><%= t('activerecord.models.item') -%></th>
    <th></th>
    <th></th>
  </tr>

<%- @donates.each do |donate| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to donate.agent.full_name, donate.agent -%></td>
    <td>
      <%= render 'manifestations/show_index', :manifestation => donate.item.manifestation -%>
    </td>
    <td>
      <%= link_to donate.item.item_identifier, donate.item -%>
    </td>
    <td><%= link_to t('page.show'), donate -%></td>
    <td>
      <%- if can? :destroy, donate -%>
        <%= link_to t('page.edit'), edit_donate_path(donate) -%>
        <%= link_to t('page.destroy'), donate, :confirm => t('page.are_you_sure'), :method => :delete -%>
      <%- end -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= paginate(@donates) -%>

</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <%- if can? :create, Donate -%>
      <li><%= link_to t('page.new', :model => t('activerecord.models.donate')), new_donate_path -%></li>
    <%- end -%>
  </ul>
</div>