<%= render partial: "shared/admin_actions" %>
<%= link_to help_center_path do %>
Docs
<% end %>
<%= render partial: "shared/sidebar_actions" %>
<% if current_page?(help_center_path) %>
<% if SupportCategory.all.count > 0 %>
<% @support_thread = SupportCategory.sorted.first.support_threads.sorted.first %>
<% if is_moderator_or_owner?(@support_thread) %>
<%= link_to icon("fas","pencil"), help_center.edit_support_thread_path(@support_thread),
class: "text-muted",
data: { toggle: "tooltip", placement: "left" },
title: t('edit_this_thread') %>
<% end %>
<%= support_category_link(@support_thread.support_category) %> > <%= @support_thread.title %>
<%= icon "fas", "thumb-tack", class: "text-muted" if @support_thread.pinned? %> <%= @support_thread.title %>
<%= @support_thread.content %>
<% end %>
<% else %>
<%= yield %>
<% end %>