Files
nairobi/app/components/layout/admin_header_component.html.erb
Javi Martín b51aa31e6a Use HTML beautifier to indent ERB files
We had inconsistent indentation in many places. Now we're fixing them
and adding a linter to our CI so we don't accidentally introduce
inconsistent indentations again.
2025-03-07 16:31:08 +01:00

28 lines
691 B
Plaintext

<header class="header">
<div class="top-links">
<%= render Layout::LocaleSwitcherComponent.new %>
<% if show_link_to_root_path? %>
<%= link_to root_path do %>
<%= t("admin.dashboard.index.back", org: setting["org_name"]) %>
<% end %>
<% end %>
</div>
<div class="top-bar">
<h1>
<%= link_to namespace_path do %>
<%= setting["org_name"] %>
<br>
<small><%= namespaced_header_title %></small>
<% end %>
</h1>
<% if show_account_menu? %>
<%= render Layout::ResponsiveMenuComponent.new do %>
<%= render Layout::AccountMenuComponent.new(user) %>
<% end %>
<% end %>
</div>
</header>