Sha256: 950d05279ef3a2a6a33f200c3d264d4b2b711de03c1d89b16419b972c3c1668d

Contents?: true

Size: 1.59 KB

Versions: 18

Compression:

Stored size: 1.59 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, :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

18 entries across 18 versions & 1 rubygems

Version Path
enju_event-0.0.24 app/views/event_import_files/index.html.erb
enju_event-0.0.23 app/views/event_import_files/index.html.erb
enju_event-0.1.10 app/views/event_import_files/index.html.erb
enju_event-0.1.9 app/views/event_import_files/index.html.erb
enju_event-0.0.22 app/views/event_import_files/index.html.erb
enju_event-0.0.21 app/views/event_import_files/index.html.erb
enju_event-0.1.8 app/views/event_import_files/index.html.erb
enju_event-0.0.20 app/views/event_import_files/index.html.erb
enju_event-0.1.7 app/views/event_import_files/index.html.erb
enju_event-0.0.19 app/views/event_import_files/index.html.erb
enju_event-0.1.6 app/views/event_import_files/index.html.erb
enju_event-0.0.18 app/views/event_import_files/index.html.erb
enju_event-0.0.17 app/views/event_import_files/index.html.erb
enju_event-0.1.5 app/views/event_import_files/index.html.erb
enju_event-0.0.16 app/views/event_import_files/index.html.erb
enju_event-0.1.4 app/views/event_import_files/index.html.erb
enju_event-0.1.3 app/views/event_import_files/index.html.erb
enju_event-0.0.15 app/views/event_import_files/index.html.erb