Sha256: 60b2f5777dfa56c7aa58f34fc1749d005db4b74366f4f212b3acdd32bf3ea156
Contents?: true
Size: 830 Bytes
Versions: 7
Compression:
Stored size: 830 Bytes
Contents
<section id="plans"> <p><a href="create_plan">Add New Plan</a> <span id="navigate"><a href="entity_list">Back to List</a> | <a href="test_database">Logout</a></span></p> <hr/> <% if @plans.count > 0 %> <table class="entity"> <caption> <strong>Current Plans</strong> </caption> <thead> <th id="planName">Plan Name</th> <th id="planStudy">Associated Study</th> <th id="planDescription">Plan Description</th> </thead> <tbody> <% @plans.each do |plan| %> <tr> <td headers="planName"><%= plan.plan_name %></td> <td headers="planStudy"><%= plan.study %></td> <td headers="planDescription"><%= plan.plan_description %></td> </tr> <% end %> </tbody> </table> <% else %> <p>No plans in database.</p> <% end %> </section>
Version data entries
7 entries across 7 versions & 1 rubygems