<%= I18n.t('things.object').capitalize %>:
<%= link_to I18n.t('tags.new-action'), new_thing_path, id: 'new-thing' %>
<%= I18n.t('searches.title') %>:
<%= link_to I18n.t('tags.new-action'), new_search_path, id: 'new-search' %>
<% if @search&.id %>
<%= link_to I18n.t('general.edit'), edit_search_path(@search) %>
<%= link_to I18n.t('general.delete'), search_path(@search), data: { turbo_confirm: I18n.t('general.sure'), turbo_method: :delete } %>
<% end %>
<%= link_to I18n.t('searches.export.action'), new_search_exports_path(current_user.last_search_id ? current_user.last_search_id : '0') %>
<%= link_to I18n.t('searches.shared.title').downcase, shared_searches_path %>
<%= I18n.t('tags.title-singular').capitalize %>:
<%= link_to I18n.t('tags.new-action').downcase, new_tag_path %>
<%= link_to I18n.t('general.list').downcase, tags_path %>