Sha256: d353cbb3494c303918cbc0a7c4a3f7417d416772b35a4751ca0553a19ff6dcec
Contents?: true
Size: 526 Bytes
Versions: 7
Compression:
Stored size: 526 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].to_s}.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
7 entries across 7 versions & 2 rubygems