Sha256: 1e0e212b153188954e7cec1826eab7d7c3155d57b942475e8a099c18fbf59a73
Contents?: true
Size: 945 Bytes
Versions: 7
Compression:
Stored size: 945 Bytes
Contents
<section id="studies"> <p><a href="create_study">Add New Study</a> <span id="navigate"><a href="entity_list">Back to List</a> | <a href="test_database">Logout</a></span></p> <hr/> <% if @studies.length > 0 %> <table class="entity"> <caption> <strong>Current Studies</strong> </caption> <thead> <th id="studyName">Study Name</th> <th id="studyProduct">Associated Product</th> <th id="studyPhase">Study Phase</th> <th id="studyProtocol">Study Protocol</th> </thead> <tbody> <% @studies.each do |study| %> <tr> <td headers="studyName"><%= study.study_name %></td> <td headers="studyProduct"><%= study.product %></td> <td headers="studyPhase"><%= study.phase %></td> <td headers="studyProtocol"><%= study.protocol %></td> </tr> <% end %> </tbody> </table> <% else %> <p>No studies in database.</p> <% end %> </section>
Version data entries
7 entries across 7 versions & 1 rubygems