|
- <p id="notice"><%= notice %></p>
-
- <p>
- <strong>Name:</strong>
- <%= @document.name %>
- </p>
-
- <p>
- <strong>Category:</strong>
- <%= @document.category.get_fqcn %>
- </p>
-
- <p>
- <%= link_to @document.doc_file_name, @document.doc.url %>
- </p>
-
- <% if @document.content %>
- <p>
- <strong>Content:</strong>
- <%= @document.content.text.truncate_words(30) %>
- </p>
- <p>
- <strong>Words (length > 3):</strong>
- <%= @document.content.text.squish.split(/\s+/).uniq.delete_if { |w| w.length <= 3 } %>
- </p>
- <% end %>
-
-
- <%= link_to 'Edit', edit_document_path(@document) %> |
- <%= link_to 'Back', documents_path %>
|