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