您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

31 行
612 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. <p>
  11. <%= link_to @document.doc_file_name, @document.doc.url %>
  12. </p>
  13. <% if @document.content %>
  14. <p>
  15. <strong>Content:</strong>
  16. <%= @document.content.text.truncate_words(30) %>
  17. </p>
  18. <p>
  19. <strong>Words (length > 3):</strong>
  20. <%= @document.content.text.squish.split(/\s+/).uniq.delete_if { |w| w.length <= 3 } %>
  21. </p>
  22. <% end %>
  23. <%= link_to 'Edit', edit_document_path(@document) %> |
  24. <%= link_to 'Back', documents_path %>