Newer
Older
dmpopidor / app / views / org_admin / annotations / _show.html.erb
<% 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>
        <div class="display-readonly-textarea-content">
          <%= sanitize example_answer.text %>
        </div>
      <dd>
    <% end %>
    <% if guidance.present? %>
      <dd>
        <div class="display-readonly-textarea-content">
          <%= sanitize guidance.text %>
        </div>
      </dd>
    <% end %>
  </dl>
<% end %>