Sha256: 13d161feb671d71e95194272f7173956137133c3e25d208224cb892b9b99184f

Contents?: true

Size: 1.94 KB

Versions: 26

Compression:

Stored size: 1.94 KB

Contents

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

<table class="table table-striped index">
  <thead>
    <tr>
      <th style="width: 30px">Id</th>
      <th><%= t('activerecord.attributes.event_import_file.event_import_file_name') -%></th>
      <th><%= t('activerecord.attributes.event_import_file.edit_mode') -%></th>
      <th><%= t('activerecord.attributes.event_import_file.executed_at') -%></th>
      <th><%= t('activerecord.attributes.event_import_file.state') -%></th>
      <th></th>
    </tr>
  </thead>

  <tbody>
    <% @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_path(event_import_file, format: :download) if event_import_file.event_import_file_name %>
          <br />
          <%= t('activerecord.models.user') -%>: <%= link_to event_import_file.user.username, event_import_file.user.profile if event_import_file.user.try(:profile) -%></td>
        <td><%= event_import_file.edit_mode -%></td>
        <td><%= l(event_import_file.executed_at) if event_import_file.executed_at -%></td>
        <td><%= localized_state(event_import_file.current_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 %>
  </tbody>
</table>

<%= paginate(@event_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.event_import_file')), new_event_import_file_path -%></li>
  </ul>
</div>

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
enju_event-0.3.5 app/views/event_import_files/index.html.erb
enju_event-0.4.0.rc.1 app/views/event_import_files/index.html.erb
enju_event-0.3.4 app/views/event_import_files/index.html.erb
enju_event-0.3.3 app/views/event_import_files/index.html.erb
enju_event-0.4.0.beta.2 app/views/event_import_files/index.html.erb
enju_event-0.4.0.beta.1 app/views/event_import_files/index.html.erb
enju_event-0.3.2 app/views/event_import_files/index.html.erb
enju_event-0.3.1 app/views/event_import_files/index.html.erb
enju_event-0.3.0 app/views/event_import_files/index.html.erb
enju_event-0.3.0.rc.1 app/views/event_import_files/index.html.erb
enju_event-0.3.0.beta.1 app/views/event_import_files/index.html.erb
enju_event-0.2.3 app/views/event_import_files/index.html.erb
enju_event-0.2.2 app/views/event_import_files/index.html.erb
enju_event-0.2.1 app/views/event_import_files/index.html.erb
enju_event-0.2.0 app/views/event_import_files/index.html.erb
enju_event-0.2.0.beta.4 app/views/event_import_files/index.html.erb
enju_event-0.2.0.beta.3 app/views/event_import_files/index.html.erb
enju_event-0.2.0.beta.2 app/views/event_import_files/index.html.erb
enju_event-0.2.0.beta.1 app/views/event_import_files/index.html.erb
enju_event-0.1.19 app/views/event_import_files/index.html.erb