Sha256: 882042e4a9224324061f61ab94642eafd8767419d901228ade2c868671b3ad77
Contents?: true
Size: 1.61 KB
Versions: 10
Compression:
Stored size: 1.61 KB
Contents
<div id="content_detail" class="ui-corner-all"> <h1 class="title"><%= t('page.listing', :model => t('activerecord.models.agent_import_file')) -%></h1> <div id="content_list"> <table class="table table-striped index"> <tr> <th>ID</th> <th><%= t('activerecord.attributes.agent_import_file.agent_import_file_name') -%></th> <th><%= t('activerecord.attributes.agent_import_file.executed_at') -%></th> <th><%= t('activerecord.models.user') -%></th> <th><%= t('activerecord.attributes.agent_import_file.edit_mode') -%></th> <th><%= t('activerecord.attributes.agent_import_file.state') -%></th> <th></th> </tr> <%- @agent_import_files.each do |agent_import_file| -%> <tr class="line<%= cycle("0", "1") -%>"> <td><%= link_to agent_import_file.id, agent_import_file -%></td> <td><%= link_to agent_import_file.agent_import_file_name, agent_import_file -%></td> <td><%= l(agent_import_file.executed_at) if agent_import_file.executed_at -%></td> <td><%= link_to agent_import_file.user.username, agent_import_file.user -%></td> <td><%= agent_import_file.edit_mode -%></td> <td><%= localized_state(agent_import_file.state) -%></td> <td> <%= link_to t('page.show'), agent_import_file -%> <%= link_to t('page.destroy'), agent_import_file, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%> </td> </tr> <%- end -%> </table> <%= paginate(@agent_import_files) -%> </div> </div> <div id="submenu" class="ui-corner-all"> <ul> <li><%= link_to t('page.new', :model => t('activerecord.models.agent_import_file')), new_agent_import_file_path -%></li> </ul> </div>
Version data entries
10 entries across 10 versions & 1 rubygems