Sha256: 19bcbfe5c775abe92d064607f2b5076db94d2566a81c9e63ca13dca5b4392e76

Contents?: true

Size: 812 Bytes

Versions: 5

Compression:

Stored size: 812 Bytes

Contents

<% set_title "System Metrics Administration" -%>
<% set_page_title "Administration" -%>
<% if @categories.all.size > 0 -%>
  <div id="menu-bar">
    <%= form_tag "#{metrics_path}/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 metric_path(category.category), :method => :delete do %>
          <%= submit_tag 'Delete Category' %>
        <% end -%>
        </td>
      </tr>
    <% end -%>
    </tbody>
  </table>
<% else -%>
  <p>No metrics found</p>
<% end -%>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
system-metrics-0.2.5 app/views/system_metrics/metrics/admin.html.erb
system-metrics-0.2.4 app/views/system_metrics/metrics/admin.html.erb
system-metrics-0.2.3 app/views/system_metrics/metrics/admin.html.erb
system-metrics-0.2.2 app/views/system_metrics/metrics/admin.html.erb
system-metrics-0.2.1 app/views/system_metrics/metrics/admin.html.erb