Sha256: e3fd8420b234a3cace8f7477491e8144fa9a029623d3c9ab7a80ccbdbf9d45ee

Contents?: true

Size: 648 Bytes

Versions: 12

Compression:

Stored size: 648 Bytes

Contents

<% provide :page_title, 'Operations' %>
<% provide :page_header do %>
  <h1>Operations</h1>
<% end %>

<div class="row">
  <div class="col-sm-4">
    <table class="table">
      <thead>
        <th>Operation Type</th>
        <th>Status</th>
      </thead>
      <tbody>
        <% @operations.each do |op| %>
          <tr>
            <td><%= link_to op.operation_type, curation_concerns.user_operation_path(params[:user_id], op) %></td>
            <td><span class="label <%= op.status == 'failure' ? 'label-danger' : 'label-success' %>"><%= op.status %></span></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
curation_concerns-1.7.8 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.7 app/views/curation_concerns/operations/index.html.erb
curation_concerns-2.0.0 app/views/curation_concerns/operations/index.html.erb
curation_concerns-2.0.0.rc2 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.6 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.5 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.4 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.3 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.2 app/views/curation_concerns/operations/index.html.erb
curation_concerns-2.0.0.rc1 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.1 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.7.0 app/views/curation_concerns/operations/index.html.erb