選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

37 行
802 B

  1. <p id="notice"><%= notice %></p>
  2. <p>
  3. <strong>Name:</strong>
  4. <%= @document.name %>
  5. </p>
  6. <p>
  7. <strong>Category:</strong>
  8. <%= @document.category.get_fqcn %>
  9. </p>
  10. <% if File.exists?(@document.doc.path(:thumb)) %>
  11. <p>
  12. <%= link_to image_tag(@document.doc.url(:thumb), alt: 'Thumbnail of PDF'), @document.doc.url %>
  13. </p>
  14. <% else %>
  15. <p>
  16. <%= link_to @document.doc_file_name, @document.doc.url %>
  17. </p>
  18. <% end %>
  19. <% if @document.content %>
  20. <p>
  21. <strong>Content:</strong>
  22. <%= @document.content.text.truncate_words(30) %>
  23. </p>
  24. <p>
  25. <strong>Words (length > 3):</strong>
  26. <%= @document.content.text.squish.split(/\s+/).uniq.delete_if { |w| w.length <= 3 } %>
  27. </p>
  28. <% end %>
  29. <%= link_to 'Edit', edit_document_path(@document) %> |
  30. <%= link_to 'Back', documents_path %>