CV-Gate/search_for_text_into_pdfs

View on GitHub
app/views/documents/show.html.erb

Summary

Maintainability
Test Coverage
<p id="notice"><%= notice %></p>

<p>
  <b>Title:</b>
  <%= @document.title %>
</p>

<p>
  <b>Content:</b>
  <%= simple_format(@document.content) %>
</p>

<p>
  <b>Private:</b>
  <%= @document.private %>
</p>
<p>
    <%= link_to "Download", @document.file_url.to_s %>
</p>

<%= link_to 'Edit', edit_document_path(@document) %> |
<%= link_to 'Back', documents_path %>