Sha256: 7e3e4ef717208754e28e9cd93498d3fbb5bc489c2ce57a1dbdfcbfc363b17a72

Contents?: true

Size: 521 Bytes

Versions: 2

Compression:

Stored size: 521 Bytes

Contents

<% unless @error %>
<%   @top_level.keys.sort.each do |key| %>
<h2> <%= key.capitalize %> </h2>
<table>
    <thead>
        <th width="30%">Name</th>
        <th width="70%">Description</th>
    </thead>
    <tbody>
        <% @top_level[key].dashboards.sort_by{|b| b[:name]}.each do |board| %>
        <tr>
            <td><a href="<%= [@prefix, key, board[:link]].join('/') %>/"><%= board[:name] %></a></td><td><%= board[:description] %></td>
        </tr>
        <% end %>
    </tbody>
</table>
<%   end %>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gdash-0.0.2 views/index.erb
gdash-0.0.1 views/index.erb