trabajo-afectivo/app/views/knowledge_base/public/answers/show.html.erb

29 lines
1.1 KiB
Text
Raw Normal View History

2019-06-04 03:40:48 +00:00
<main class="main main--article"
data-base-path='<%= custom_path_if_needed help_answer_path(@category, @object, locale: '{locale}'), @knowledge_base %>'
2019-06-04 03:40:48 +00:00
data-available-locales='<%= @object_locales.map(&:locale).join(',') %>'>
<article class="article">
<div class="container">
<h1>
<%= @object.translation.title %>
2019-06-04 03:40:48 +00:00
</h1>
<div class="article-content">
<%= prepare_rich_text(@object.translation.content.body_with_urls).html_safe %>
2019-06-04 03:40:48 +00:00
</div>
<% if (attachments = @object.attachments_sorted) && attachments.present? %>
<div class="attachments">
<%= icon 'paperclip' %>
<div class="attachments-title"><%= zt('Attached Files') %></div>
2019-06-04 03:40:48 +00:00
<% attachments.each do |attachment| %>
<%= link_to custom_path_if_needed(attachment_path(attachment), @knowledge_base), class: 'attachment', download: true do %>
2019-06-04 03:40:48 +00:00
<span class="attachment-name u-highlight"><%= attachment.filename %></span>
<div class="attachment-size">404kb</div>
<% end %>
<% end %>
</div>
<% end %>
</div>
</article>
</main>