Newer
Older
dmpopidor / app / views / annotations / _show.html.erb
<% org = template.org.abbreviation.present? ? template.org.abbreviation : template.org.name %>
<% if example_answer.present? || guidance.present? %>
  <dl<%= for_plan ? ' class="dl-horizontal"' : '' %>>
    <% if example_answer.present? %>
      <dt><%= "#{for_plan ? "#{org} " : ''}#{_('Example answer')}" %></dt>
      <dd><%= raw example_answer.text %><dd>
    <% end %>
    <% if guidance.present? %>
      <dt><%= "#{for_plan ? "#{org} " : ''}#{_('Guidance')}" %></dt>
      <dd><%= raw guidance.text %></dd>
    <% end %>
  </dl>
<% end %>