Sha256: e80c4dada4f573f0ec6fff18adf786c9039655b292824bec9d9be187782048d3

Contents?: true

Size: 1.6 KB

Versions: 3

Compression:

Stored size: 1.6 KB

Contents

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

<table class="index">
  <tr>
    <th>Id</th>
    <th><%= t('activerecord.attributes.event_import_file.event_import_file_name') -%></th>
    <th><%= t('activerecord.attributes.event_import_file.executed_at') -%></th>
    <th><%= t('activerecord.models.user') -%></th>
    <th><%= t('activerecord.attributes.event_import_file.edit_mode') -%></th>
    <th><%= t('activerecord.attributes.event_import_file.state') -%></th>
    <th></th>
  </tr>

<%- @event_import_files.each do |event_import_file| -%>
  <tr class="line<%= cycle("0", "1") -%>">
    <td><%= link_to (event_import_file.id), event_import_file -%></td>
    <td><%= link_to event_import_file.event_import_file_name, event_import_file -%></td>
    <td><%= l(event_import_file.executed_at) if event_import_file.executed_at -%></td>
    <td><%= link_to event_import_file.user.username, event_import_file.user -%></td>
    <td><%= event_import_file.edit_mode -%></td>
    <td><%= localized_state(event_import_file.state) -%></td>
    <td>
      <%= link_to t('page.show'), event_import_file -%>
      <%= link_to t('page.destroy'), event_import_file, :data => {:confirm => t('page.are_you_sure')}, :method => :delete -%>
    </td>
  </tr>
<%- end -%>
</table>

<%= will_paginate(@event_import_files) -%>
</div>
</div>

<div id="submenu" class="ui-corner-all">
  <ul>
    <li><%= link_to t('page.new', :model => t('activerecord.models.event_import_file')), new_event_import_file_path -%></li>
  </ul>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
enju_event-0.0.25 app/views/event_import_files/index.html.erb
enju_event-0.1.12 app/views/event_import_files/index.html.erb
enju_event-0.1.11 app/views/event_import_files/index.html.erb