Sha256: 7edf463640523f13f7410f9788df72d7777b1e4764713ea1d7009f593cc86ece

Contents?: true

Size: 1.72 KB

Versions: 9

Compression:

Stored size: 1.72 KB

Contents

<div id="content_detail" class="ui-corner-all ui-widget-content">
<h1 class="title"><%= t('page.listing', model: t('activerecord.models.agent_import_file')) -%></h1>
<div id="content_list">
<p id="notice"><%= notice %></p>

<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.profile if agent_import_file.user.try(:profile) -%></td>
    <td><%= agent_import_file.edit_mode -%></td>
    <td><%= localized_state(agent_import_file.current_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 ui-widget-content">
  <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

9 entries across 9 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre65 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre64 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre63 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre62 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre61 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre60 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre59 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre58 app/views/agent_import_files/index.html.erb
enju_biblio-0.1.0.pre57 app/views/agent_import_files/index.html.erb