Sha256: 6ea58d3e36b9033a56b03b0c98404f53b5b6fe9e82aaf77b959c982b55a453e4
Contents?: true
Size: 1.11 KB
Versions: 18
Compression:
Stored size: 1.11 KB
Contents
<% content_for(:header_title) { "Handlers" } %> <% content_for(:header_right) do %> <%= link_to update_cache_handlers_path, class: "btn btn-default btn-sm", method: :post, data: {confirm: "Are you sure?"} do %> <i class="fa fa-refresh"></i> Update <% end %> <% end %> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-title"> Handlers </div> </div> <div class="table-responsive"> <table class="table table-hover table-striped"> <thead> <tr> <th>Handler</th> <th class="hidden-xs">Translations</th> </tr> </thead> <tbody> <% @handlers.each do |handler| %> <tr> <td> <%= link_to handler.name, handler_path(handler) %> </td> <td class="hidden-xs"> <%= handler.handler_translations.length %> </td> </tr> <% end %> <% if @handlers.empty? %> <tr> <td class="error" colspan="2">No handlers were found.</td> </tr> <% end %> </tbody> </div> </div> </div>
Version data entries
18 entries across 18 versions & 1 rubygems