<%= t(".title") %>
<%= form_tag admin_search_path, method: :get do %>
<%= text_field_tag :search_term, nil, id: "dashboard_search_term", placeholder: t(".search_placeholder"), autocomplete: "off" %>
<% end %>
<%= link_to new_node_path, class: "action_button" do %>
<%= icon("plus", library: "tabler", "aria-hidden": true) %> <%= t(".create_post") %>
<% end %>
<%= link_to chapters_nodes_path, class: "action_button" do %>
<%= icon("map-pin", library: "tabler", "aria-hidden": true) %> <%= t(".find_chapter") %>
<% end %>
<%= link_to new_asset_path, class: "action_button" do %>
<%= icon("upload", library: "tabler", "aria-hidden": true) %> <%= t(".upload_asset") %>
<% end %>
<%= link_to sitemap_nodes_path, class: "action_button" do %>
<%= icon("list-tree", library: "tabler", "aria-hidden": true) %> <%= t(".add_in_tree") %>
<% end %>
<%= t(".housekeeping") %>
<%= link_to edit_user_path(current_user), class: "action_button" do %>
<%= icon("user-cog", library: "tabler", "aria-hidden": true) %> <%= t(".my_account") %>
<% end %>
<%= link_to nodes_path, class: "action_button" do %>
<%= icon("list", library: "tabler", "aria-hidden": true) %> <%= t("nodes.index.title") %>
<% end %>
<%= link_to events_path, class: "action_button" do %>
<%= icon("calendar", library: "tabler", "aria-hidden": true) %> <%= t("events.index.title") %>
<% end %>
<%= link_to assets_path, class: "action_button" do %>
<%= icon("folder", library: "tabler", "aria-hidden": true) %> <%= t("assets.index.title") %>
<% end %>
<%= link_to users_path, class: "action_button" do %>
<%= icon("users", library: "tabler", "aria-hidden": true) %> <%= t("users.index.users") %>
<% end %>
<%= link_to menu_items_path, class: "action_button" do %>
<%= icon("menu-2", library: "tabler", "aria-hidden": true) %> <%= t(".navigation") %>
<% end %>
<% trash_count = Node.trash.children.count %>
<%= link_to trashed_nodes_path, class: "action_button" do %>
<%= icon("trash", library: "tabler", "aria-hidden": true) %> <%= t("nodes.trashed.title") %><%= " (#{trash_count})" if trash_count > 0 %>
<% end %>