diff --git a/lib/cannery_web/templates/layout/topbar.html.heex b/lib/cannery_web/templates/layout/topbar.html.heex
index 37af719..6860d97 100644
--- a/lib/cannery_web/templates/layout/topbar.html.heex
+++ b/lib/cannery_web/templates/layout/topbar.html.heex
@@ -9,6 +9,38 @@
<%= if assigns |> Map.has_key?(:current_user) && @current_user do %>
+ -
+ <%= link(gettext("Tags"),
+ class: "hover:underline",
+ to: Routes.tag_index_path(CanneryWeb.Endpoint, :index)
+ ) %>
+
+ -
+ <%= link(gettext("Containers"),
+ class: "hover:underline",
+ to: Routes.container_index_path(CanneryWeb.Endpoint, :index)
+ ) %>
+
+ -
+ <%= link(gettext("Ammo"),
+ class: "hover:underline",
+ to: Routes.ammo_type_index_path(CanneryWeb.Endpoint, :index)
+ ) %>
+
+ -
+ <%= link(gettext("Manage"),
+ class: "hover:underline",
+ to: Routes.ammo_group_index_path(CanneryWeb.Endpoint, :index)
+ ) %>
+
+ <%= if @current_user.role == :admin do %>
+ -
+ <%= link(gettext("Invites"),
+ class: "hover:underline",
+ to: Routes.invite_index_path(CanneryWeb.Endpoint, :index)
+ ) %>
+
+ <% end %>
-
<%= link(@current_user.email,
class: "hover:underline",
@@ -22,6 +54,13 @@
<% end %>
+ <%= if @current_user.role == :admin and function_exported?(Routes, :live_dashboard_path, 2) do %>
+ -
+ <%= link to: Routes.live_dashboard_path(CanneryWeb.Endpoint, :home) do %>
+
+ <% end %>
+
+ <% end %>
<% else %>
<%= if Accounts.allow_registration?() do %>
-