Sha256: 488a692d6d2a054b74a798c08393ec36adeaaffcee0fb7101c90d382f62bcd8e
Contents?: true
Size: 1.31 KB
Versions: 102
Compression:
Stored size: 1.31 KB
Contents
<text> <table border="1" width="100%"> <thead> <tr> <th>Description</th> <th>Codes</th> <th>Time</th> <% if status.present? %> <th>Status</th> <% end %> <% if value.present? %> <th>Value</th> <% end %> </tr> </thead> <tbody> <% entries.each_with_index do |entry, i| -%> <tr> <td ID="<%= section %>-desc-<%= i %>"><%= entry.description %></td> <td ID="<%= section %>-code-<%= i %>"><%= entry.codes_to_s %><br/><%= entry.specifics %></td> <td><%= entry.times_to_s %></td> <% if status.present? %> <td><%= entry.status %></td> <% end %> <% if value.present?%> <td> <% entry.values.each do |value| %> <% if value.respond_to? :scalar %> <%= value.try(:scalar) %><br/> <% elsif value.respond_to? :codes %> <% value.codes.each do |system, vals| %> <%= system %>: <%= vals.join(',') %><br/> <% end %> <% else %> UNKNOWN VALUE <% end %> <% end %> </td> <% end %> </tr> <%- end -%> </tbody> </table> </text>
Version data entries
102 entries across 51 versions & 1 rubygems