<%= notice %>
Name: <%= @document.name %>
Category: <%= @document.category.get_fqcn %>
<% if File.exists?(@document.doc.path(:thumb)) %><%= link_to image_tag(@document.doc.url(:thumb), alt: 'Thumbnail of PDF'), @document.doc.url %>
<% else %><%= link_to @document.doc_file_name, @document.doc.url %>
<% end %> <% if @document.content %>Content: <%= @document.content.text.truncate_words(30) %>
Words (length > 3): <%= @document.content.text.squish.split(/\s+/).uniq.delete_if { |w| w.length <= 3 } %>
<% end %> <%= link_to 'Edit', edit_document_path(@document) %> | <%= link_to 'Back', documents_path %>