-
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_id.nil? ? 'No Universe Set' : @document.universe.name %>
<% end %>
-
<%= link_to @document, target: '_blank' do %>
<%= Document.icon %>
View formatted document
<% 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
Open document notes
<% end %>
-
<%=
link_to '#', class: 'share' do
%>
share
Share this document
<% 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 %>