Sha256: f83e4b2bc0b0a5eeb0fff23604a65ea3174b89bd5d82e31294ffc5a653e6ebe6

Contents?: true

Size: 548 Bytes

Versions: 10

Compression:

Stored size: 548 Bytes

Contents

<% Rails.application.routes.puffer.each do |(namespace, groups)| %>
  <h2><%= namespace.to_s.humanize %></h2>
  <ul class="navigation">
    <% groups.each do |(group, controllers)| %>
      <li>
        <span><%= group.to_s.humanize %></span>
        <ul class="additional">
          <% controllers.each do |controller| %>
            <li>
              <%= link_to controller.model.model_name.human, polymorphic_url([namespace, controller.model]) %>
            </li>
          <% end %>
        </ul>
      </li>
    <% end %>
  </ul>
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
puffer-0.0.29 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.28 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.26 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.25 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.24 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.23 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.22 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.21 app/views/puffer/dashboard_base/index.html.erb
puffer-0.0.20 app/views/puffer/dashboard/index.html.erb
puffer-0.0.19 app/views/puffer_dashboard/index.html.erb