Sha256: 976f72b3e3cb0d8ecd0ab00bb6c2533d4b60a74d305be06f6b0b46e3e71a2d4a
Contents?: true
Size: 929 Bytes
Versions: 11
Compression:
Stored size: 929 Bytes
Contents
<div id="burndown_chart"> <%= burndown_chart @iteration, @iteration_data %> </div> <div id="iteration_stats"> <h3>Iteration Stats</h3> <p> <b>Velocity:</b> <%=h @iteration.velocity %> </p> <p> <b>Name:</b> <%=h @iteration.name %> </p> <p> <b>Start date:</b> <%=h @iteration.start_date %> </p> <p> <b>End date:</b> <%=h @iteration.end_date %> </p> <p> <b>Release:</b> <%=h @iteration.release.release_date if @iteration.release %> </p> <% unless @iteration.stories.empty? %> <b>Stories</b> <ul> <% @iteration.stories.each do |story| %> <li><%= story.description %> | <%= story.points %></li> <% end %> </ul> <% end %> </div> <%= link_to 'Edit', edit_iteration_path(@iteration) %> | <%= link_to 'Back', iterations_path %> | <%=link_to 'Stories', iteration_stories_path(@iteration) %>
Version data entries
11 entries across 11 versions & 1 rubygems