notebook/app/views/documents/analysis/_display.html.erb
2019-07-23 20:52:56 -05:00

10 lines
937 B
Plaintext

<%= render partial: 'documents/analysis/sections/general', locals: { document: document, analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/length', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/time_to_read', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/readability', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/entities', locals: { analysis: analysis } if analysis.document_entities.any? %>
<%= render partial: 'documents/analysis/sections/sentiment', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/style', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/concepts', locals: { analysis: analysis } %>
<%= render partial: 'documents/analysis/sections/categories', locals: { analysis: analysis } %>