-
About this document
Created <%= time_ago_in_words @document.created_at %> ago
Last edited <%= time_ago_in_words @document.updated_at %> ago
-
<%= link_to @document.user, class: User.color + '-text' do %>
<%= User.icon %>
Written by
<%= @document.user.name %>
<% end %>
-
<%= link_to '#universe-picker-modal', class: Universe.color + '-text modal-trigger' do %>
<%= Universe.icon %>
Set in
<%= @document.universe.nil? ? 'No Universe Set' : @document.universe.name %>
<% end %>
-
<%= link_to @document, target: '_blank' do %>
<%= Document.icon %>
Read-only view
<% end %>
-
<%= link_to plaintext_document_path(@document), target: '_blank' do %>
title
Plaintext view
<% end %>
-
<%= link_to analysis_document_path(@document) do %>
bar_chart
Analyze this document
<% end %>
-
<%= link_to '#', class: 'modal-trigger', data: { target: 'document-notes-modal' } do %>
edit
Document notes
<% end %>
-
<%=
link_to '#', class: 'share' do
%>
share
Share this document
<% end %>
-
<%= link_to document_document_revisions_path(@document) do %>
content_copy
Revision log
<% end %>
<% if current_user.can_delete?(@document) %>
-
<%= link_to @document,
method: :delete,
data: {
confirm: "Are you sure? This will permanently delete this entire document!"
} do
%>
delete
Delete this document
<% end %>
<% end %>