Newer
Older
dmpopidor / app / views / org_admin / annotations / _show.html.erb
@Gavin Morrice Gavin Morrice on 28 Aug 2018 407 bytes Issue 532 (#1847)
<% if example_answer.present? || guidance.present? %>
  <dl<%= for_plan ? ' class="dl-horizontal"' : '' %>>
    <% if example_answer.present? %>
      <dt><%= _('%{org} Example Answer') % { org: example_answer.org.short_name } %></dt>
      <dd><%= sanitize example_answer.text %><dd>
    <% end %>
    <% if guidance.present? %>
      <dd><%= sanitize guidance.text %></dd>
    <% end %>
  </dl>
<% end %>