Sha256: 5231571e4d87fc18cc4d7661742eacab892ba9c5b0621db632c4ed5d23360cf2
Contents?: true
Size: 862 Bytes
Versions: 8
Compression:
Stored size: 862 Bytes
Contents
<% if @warning_message.blank? %> <table id="plugins-table" class="table table-condensed table-striped mobile-data"> <thead> <tr> <th>Name</th> <th>Version</th> <th></th> </tr> </thead> <tbody> <% plugins.each do |name, version| %> <tr> <td><%= name %></td> <td><%= version %></td> <td><%= link_to '<i class="fa fa-cloud-download"></i>'.html_safe, plugin_install_path(:plugin_key => name), :method => :post, :title => 'Install' %></td> </tr> <% end %> </tbody> </table> <% else %> <div class="alert alert-warning" role="alert"><%= @warning_message.html_safe %></div> <% end %> <%= javascript_tag do %> $(document).ready(function() { $('#plugins-table').dataTable({ "dom": "t", "paging": false, "ordering": false }); }); <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems