Sha256: 0e619636919835b9747c77d3ea72e75aa6265fc06f58818166fe4b7d147e62ea

Contents?: true

Size: 589 Bytes

Versions: 1

Compression:

Stored size: 589 Bytes

Contents

<%= render 'tabs' %>

<table class="table is-hoverable is-fullwidth">
  <thead>
    <tr>
    
    </tr>
  </thead>

  <tbody>
  <% @job_transfers.each do |job_transfer| %>
    <tr>
      
      <td>
        <% if job_transfer.init? %>
          <%= link_to t('.edit'), edit_my_job_transfer_path(job_transfer), class: 'ui pink label' %>
          <%= link_to t('.destroy'), my_job_transfer_path(job_transfer), method: :delete, data: { confirm: t('.confirm') }, class: 'ui red label' %>
        <% end %>
      </td>
    </tr>
  <% end %>
  </tbody>
</table>

<%= paginate @job_transfers %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rails_org-0.0.1 app/views/org/me/job_transfers/index.html.erb