<%= I18n.t('general.create').capitalize %>:
<%= link_to I18n.t('searches.object'), new_search_path %>
<%= link_to I18n.t('things.object'), new_thing_path %>
<%= I18n.t('searches.title') %>:
<% 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') %>
<%= I18n.t('general.list').capitalize %>:
<%= link_to I18n.t('tags.title').downcase, tags_path %>
<%= link_to I18n.t('searches.shared.title').downcase, shared_searches_path %>