Sha256: bada89b20931d985f5e162903f192bbbbe14ccda51c07e3760f786cddf220f17
Contents?: true
Size: 687 Bytes
Versions: 1
Compression:
Stored size: 687 Bytes
Contents
<% set_title "System Metrics Administration" -%> <% set_page_title "Administration" -%> <div id="menu-bar"> <%= form_tag "/system/metrics/all", :method => :delete do -%> <%= submit_tag 'Delete All' %> <% end -%> <h2>Metrics</h2> </div> <table> <thead> <tr><th>Category</th><th>Count</th><th>Action</th></tr> <thead> <tbody> <% for category in @categories -%> <tr> <td><%= category.category.titleize %></td> <td><%= category.count %></td> <td> <%= form_tag "/system/metrics/#{category.category}", :method => :delete do %> <%= submit_tag 'Delete Category' %> <% end -%> </td> <tr> <% end -%> </tbody> </table>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
system-metrics-0.1.0 | app/views/system_metrics/metrics/admin.html.erb |