Sha256: b0c1700513628018604e939cf5ead407606496685943cf73214249ecce734fb8
Contents?: true
Size: 506 Bytes
Versions: 8
Compression:
Stored size: 506 Bytes
Contents
<% if @results.empty? %> <p>There are currently no results for this scenario.</p> <% else %> <table class="list"> <thead> <tr> <th>#</th> <th>Run at</th> <th></th> </tr> </thead> <tbody> <% @results.each do |result| %> <tr> <td><%= result.run_number %></td> <td><%= result.created_at %></td> <td><a href="/projects/<%=@project.id%>/scenarios/<%=@scenario.id%>/results/<%=result.id%>">Show</a></td> </tr> <% end %> </tbody> </table> <% end %>
Version data entries
8 entries across 8 versions & 1 rubygems