<%= notice %>
Name: <%= @document.name %>
Category: <%= @document.category.get_fqcn %>
<%= link_to @document.doc_file_name, @document.doc.url %>
<% 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 %>