Sha256: 8434858297758f261dedc5596bdd3b4be69cce91ad888dbdcd0097ce849d2fc1
Contents?: true
Size: 728 Bytes
Versions: 1
Compression:
Stored size: 728 Bytes
Contents
<div class="header clearfix"> <h1><%= link_to 'Green Flag', admin_features_path %></h1> </div> <div class="row"> <% @features.each do |feature| %> <div class="col-md-6"> <div class="well"> <h4> <%= link_to feature.code, admin_feature_path(feature) %> <% if feature.fully_enabled? %><span class="label label-success">100%</span><% end %> <% if feature.fully_disabled? %><span class="label label-danger">0%</span><% end %> </h4> <div class="help-block"> <div>Created on <strong><%= feature.created_at.strftime("%d %b %Y") %></strong></div> </div> <p><%= feature.description %></p> </div> </div> <% end %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
green_flag-0.2.0 | app/views/green_flag/admin/features/index.html.erb |