diff --git a/app/views/content/list/_document_table.html.erb b/app/views/content/list/_document_table.html.erb
index 755806ed..d8fc350b 100644
--- a/app/views/content/list/_document_table.html.erb
+++ b/app/views/content/list/_document_table.html.erb
@@ -21,11 +21,11 @@
<% content_list.each do |document| %>
-
+ |
<%= Document.icon %>
|
-
+ |
<% if user_signed_in? && document.user == current_user %>
@@ -45,18 +45,14 @@
in <%= document.folder.title %>
<% end %>
-
- <%= link_to document.user, class: "#{User.color}-text" do %>
- <%= User.icon %>
- by <%= document.user.display_name %>
- <% end %>
+
+ <%= User.icon %>
+ by <%= document.user.display_name %>
<% if document.universe %>
-
- <%= link_to document.universe, class: "#{Universe.color}-text" do %>
- <%= Universe.icon %>
- in <%= document.universe.try(:name) || 'Unknown universe' %>
- <% end %>
+
+ <%= Universe.icon %>
+ in <%= document.universe.try(:name) || 'Unknown universe' %>
<% end %>
<% if document.respond_to?(:page_tags) %>
@@ -64,15 +60,7 @@
<% if page_tags.any? %>
<% page_tags.each do |tag| %>
- <% if user_signed_in? && document.user == current_user %>
- <%=
- link_to params.permit(:tag).merge({ tag: PageTagService.slug_for(tag.tag) }), class: "#{Document.color}-text" do
- %>
-
- <% end %>
- <% else %>
-
- <% end %>
+
<% end %>
<% end %>
|