%= render "shared/search_form", :placeholder => t(".search_placeholder"), :hidden => Array(params[:kinds]).map { |k| ["kinds[]", k] } + (params[:tags].present? ? [["tags", params[:tags]]] : []) %> <%= will_paginate @nodes %>
|
<%= flag("lock", t(".flag_locked", :login => node.lock_owner.login),
:tier => :attention) if node.lock_owner %>
<%= flag("calendar-clock",
t(".flag_embargo", :date => admin_datetime(node.head.published_at)),
:tier => :attention) if node.embargoed? %>
<%= flag("file-pencil", t(".flag_draft")) if node.draft %>
<%= flag("world-off", t(".flag_no_head")) unless node.head %>
<%= link_to title_for_node(node), node_path(node) %>
<%= link_to_path(node.unique_name, node.unique_name) %>
|
<%= link_to node_path(node), "aria-label" => t("admin.common.show"),
title: t("admin.common.show") do %>
<%= icon("eye", library: "tabler", "aria-hidden": true) %>
<% end %>
<%= link_to node_revisions_path(node), "aria-label" => t("admin.common.revisions"),
title: t("admin.common.revisions") do %>
<%= icon("history", library: "tabler", "aria-hidden": true) %>
<% end %>
|