Sha256: 434357039cf0a8143091c79f7439dc4c9ae19e25082746c1a9a070f5d8b3dcdb

Contents?: true

Size: 636 Bytes

Versions: 31

Compression:

Stored size: 636 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, sufia.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

31 entries across 31 versions & 1 rubygems

Version Path
curation_concerns-1.0.0.beta6 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.0.0.beta5 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.0.0.beta4 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.0.0.beta3 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.0.0.beta2 app/views/curation_concerns/operations/index.html.erb
curation_concerns-1.0.0.beta1 app/views/curation_concerns/operations/index.html.erb
curation_concerns-0.14.0 app/views/curation_concerns/operations/index.html.erb
curation_concerns-0.14.0.pre4 app/views/curation_concerns/operations/index.html.erb
curation_concerns-0.14.0.pre3 app/views/curation_concerns/operations/index.html.erb
curation_concerns-0.14.0.pre2 app/views/curation_concerns/operations/index.html.erb
curation_concerns-0.14.0.pre1 app/views/curation_concerns/operations/index.html.erb