Sha256: ea05ac38d7124930fb28de82e2992d81694c7cfe889b95e28bc1210449aa27e1

Contents?: true

Size: 596 Bytes

Versions: 10

Compression:

Stored size: 596 Bytes

Contents

<div class="content">
  <h1>Space</h1>

  <p>Database Size: <%= @database_size %></p>

  <table class="table">
    <thead>
      <tr>
        <th>Relation</th>
        <th style="width: 20%;">Size</th>
      </tr>
    </thead>
    <tbody>
      <% @relation_sizes.each do |query| %>
        <tr>
          <td>
            <%= query["name"] %>
            <% if query["type"] != "table" %>
              <span class="text-muted"><%= query["type"] %></span>
            <% end %>
          </td>
          <td><%= query["size"] %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
pghero-1.2.2 app/views/pg_hero/home/space.html.erb
pghero-1.2.1 app/views/pg_hero/home/space.html.erb
pghero-1.2.0 app/views/pg_hero/home/space.html.erb
pghero-1.1.4 app/views/pg_hero/home/space.html.erb
pghero-1.1.3 app/views/pg_hero/home/space.html.erb
pghero-1.1.2 app/views/pg_hero/home/space.html.erb
pghero-1.1.1 app/views/pg_hero/home/space.html.erb
pghero-1.1.0 app/views/pg_hero/home/space.html.erb
pghero-1.0.1 app/views/pg_hero/home/space.html.erb
pghero-1.0.0 app/views/pg_hero/home/space.html.erb