Sha256: eb071f7df79b798ced73d1cbe9594f0b54e7e72347e995ca1c63f96f84a3e40f
Contents?: true
Size: 549 Bytes
Versions: 2
Compression:
Stored size: 549 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.reject{|b| b[:hidden]}.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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ifttt-gdash-0.0.8 | views/index.erb |
ifttt-gdash-0.0.7 | views/index.erb |