1 <header class="d-flex bg-body flex-column flex-md-row text-nowrap closed z-3">
 
   2   <h1 class="d-flex m-0 align-items-center fw-semibold">
 
   3     <a href="<%= root_path %>" class="icon-link gap-1 me-auto text-body-emphasis text-decoration-none geolink">
 
   4       <%= image_tag "osm_logo.svg", :alt => t("layouts.logo.alt_text"), :size => 30 %>
 
   5       <%= t "layouts.project_name.h1" %>
 
   7     <%= render "layouts/select_language_button", :extra_classes => ["border-secondary border-opacity-10 d-md-none"] %>
 
   8     <a href="#" id="menu-icon" class="d-md-none">
 
   9       <%= inline_svg_tag "menu-icon.svg", :size => "30px" %>
 
  13     <%= content_for :header %>
 
  14     <div id="edit_tab" class="btn-group w-100">
 
  15       <%= link_to t("layouts.edit"),
 
  17                   :class => "btn btn-outline-primary geolink editlink",
 
  19                   :data => { :editor => preferred_editor } %>
 
  20       <button class='btn btn-outline-primary dropdown-toggle dropdown-toggle-split flex-grow-0' type='button' data-bs-toggle='dropdown'></button>
 
  21       <ul class='dropdown-menu'>
 
  22         <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
 
  24             <%= link_to t("layouts.edit_with", :editor => t("editor.#{editor}.description")),
 
  25                         edit_path(:editor => editor),
 
  26                         :data => { :editor => editor },
 
  27                         :class => "geolink editlink dropdown-item" %>
 
  33   <nav class='secondary d-flex flex-column flex-md-row gap-2 flex-grow-1 align-items-center'>
 
  34     <ul id='secondary-nav-menu' class='nav flex-grow-1 justify-content-center justify-content-md-start' data-turbo-permanent>
 
  35       <% if Settings.status != "database_offline" && can?(:index, Issue) %>
 
  37           <%= link_to issues_path(:status => "open"), :class => header_nav_link_class(issues_path) do %>
 
  38             <%= t("layouts.issues") %>
 
  39             <%= open_issues_count %>
 
  44         <%= link_to t("layouts.history"), history_path, :class => header_nav_link_class(history_path) %>
 
  47         <%= link_to t("layouts.export"), export_path, :class => header_nav_link_class(export_path) %>
 
  50         <%= link_to t("layouts.gps_traces"), traces_path, :class => header_nav_link_class(traces_path) %>
 
  53         <%= link_to t("layouts.user_diaries"), diary_entries_path, :class => header_nav_link_class(diary_entries_path) %>
 
  56         <%= link_to t("layouts.communities"), communities_path, :class => header_nav_link_class(communities_path) %>
 
  59         <%= link_to t("layouts.copyright"), copyright_path, :class => header_nav_link_class(copyright_path) %>
 
  62         <%= link_to t("layouts.help"), help_path, :class => header_nav_link_class(help_path) %>
 
  65         <%= link_to t("layouts.about"), about_path, :class => header_nav_link_class(about_path) %>
 
  67       <li id="compact-secondary-nav" class="dropdown nav-item ms-auto">
 
  68         <button class="dropdown-toggle nav-link btn btn-outline-secondary border-0 bg-body text-secondary" type="button" data-bs-toggle="dropdown"><%= t "layouts.more" %></button>
 
  69         <ul class="dropdown-menu">
 
  74     <%= render "layouts/select_language_button", :extra_classes => ["d-none d-md-block", { "border-secondary-subtle" => current_user&.id }] %>
 
  75     <% if current_user && current_user.id %>
 
  76       <div class='d-inline-flex dropdown user-menu logged-in'>
 
  77         <button class='d-flex gap-1 align-items-center justify-content-center dropdown-toggle btn btn-outline-secondary border-secondary-subtle bg-body text-secondary px-2 py-1 flex-grow-1 mw-100' type='button' data-bs-toggle='dropdown'>
 
  78           <%= user_thumbnail_tiny(current_user, :class => "user_thumbnail_tiny rounded-1 bg-body") %>
 
  79           <% if current_user.new_messages.size > 0 %>
 
  80             <span class="badge count-number position-static m-1"><%= current_user.new_messages.size %></span>
 
  82           <span class='username align-middle text-truncate' dir='auto'>
 
  83             <%= current_user.display_name_was %>
 
  86         <div class='dropdown-menu dropdown-menu-end'>
 
  87           <%= link_to t("users.show.my_dashboard"), dashboard_path, :class => "dropdown-item" %>
 
  88           <%= link_to messages_inbox_path, :class => "dropdown-item" do %>
 
  89             <%= t("users.show.my messages") %>
 
  90             <span class='badge count-number'><%= number_with_delimiter(current_user.new_messages.size) %></span>
 
  92           <%= link_to t("users.show.my profile"), current_user, :class => "dropdown-item" %>
 
  93           <%= link_to t("users.show.my_account"), account_path, :class => "dropdown-item" %>
 
  94           <%= link_to t("users.show.my_preferences"), basic_preferences_path, :class => "dropdown-item" %>
 
  95           <div class="dropdown-divider"></div>
 
  96           <% if current_user.home_location? %>
 
  97             <%= link_to t("layouts.home"), account_home_path, :class => "dropdown-item" %>
 
  99           <%= link_to t("layouts.logout"), logout_path(:referer => request.fullpath), :method => "post", :class => "geolink dropdown-item" %>
 
 103       <div class="d-inline-flex btn-group login-menu" role="">
 
 104         <%= link_to t("layouts.log_in"), login_path(:referer => request.fullpath), :class => "geolink btn btn-outline-secondary" %>
 
 105         <%= link_to t("layouts.sign_up"), new_user_path, :class => "btn btn-outline-secondary" %>
 
 111 <div class="modal fade" id="select_language_dialog" tabindex="-1" aria-labelledby="select_language_dialog_label" aria-hidden="true">
 
 112   <div class="modal-dialog modal-lg modal-dialog-scrollable">
 
 113     <div class="modal-content">
 
 114       <div class="modal-header">
 
 115         <h1 class="modal-title fs-5" id="select_language_dialog_label"><%= t ".select_language" %></h1>
 
 116         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="<%= t "javascripts.close" %>"></button>
 
 118       <div class="modal-body px-1">
 
 119         <turbo-frame id="select_language_list" src="<%= languages_pane_path %>?source=<%= ERB::Util.url_encode(request.fullpath) %>" loading="lazy">
 
 120           <div class="text-center py-3">
 
 121             <div class="spinner-border text-secondary" role="status">
 
 122               <span class="visually-hidden"><%= t ".loading" %></span>
 
 131 <div class="modal fade" id="osm_alert_modal" tabindex="-1" aria-labelledby="osm_alert_title" aria-hidden="true">
 
 132   <div class="modal-dialog modal-dialog-centered">
 
 133     <div class="modal-content">
 
 134       <div class="modal-header">
 
 135         <h1 class="modal-title fs-5" id="osm_alert_title"></h1>
 
 136         <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="<%= t "javascripts.close" %>"></button>
 
 138       <div class="modal-body" id="osm_alert_message">
 
 140       <div class="modal-footer">
 
 141         <button type="button" class="btn btn-primary" data-bs-dismiss="modal"><%= t "javascripts.close" %></button>