Sha256: 5402e6396a1f93e3df632f650d49ec94645a5e62fe26906ea359fc8a4132aebe
Contents?: true
Size: 1.59 KB
Versions: 14
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.imported_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.imported_at) if event_import_file.imported_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
14 entries across 14 versions & 1 rubygems