Sha256: 76fba2c87fb32c4e7d70379a7b462ac68e72d77d02e2c3efb9cd16f1c082936c
Contents?: true
Size: 795 Bytes
Versions: 1
Compression:
Stored size: 795 Bytes
Contents
<div class="row"> <div class="col-md-12"> <% if @consulta.exames.size > 0 %> <table class="table table-bordered" id="exames"> <thead> <tr> <th>Exame</th> <th>Data</th> <th>Resultado</th> <th>Valores de ReferĂȘncia</th> </tr> </thead> <tbody> <% @consulta.exames.each do |exame| %> <tr> <td><%= exame.tipo_exame.nome %></td> <td><%= exame.data.strftime("%d/%m/%Y") %></td> <td><%= exame.resultado %></td> <td><%= exame.valores_referencia %></td> </tr> <% end %> </tbody> </table> <% else %> <p>Nenhum exame encontrado nessa consulta.</p> <% end %> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-sabia-1.0.1 | app/views/consultas/show/html/_exames_periodicos.html.erb |