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