diff --git a/lib/cannery_web/live/component/topbar.html.leex b/lib/cannery_web/live/component/topbar.html.leex
index 7ea43f34..c2fed164 100644
--- a/lib/cannery_web/live/component/topbar.html.leex
+++ b/lib/cannery_web/live/component/topbar.html.leex
@@ -5,13 +5,13 @@
<%= link to: Routes.home_path(CanneryWeb.Endpoint, :index) do %>
Cannery
<% end %>
-
+
<%= if @title_content do %>
|
<%= @title_content %>
<% end %>
-
+
<%# user settings %>
@@ -32,7 +32,14 @@
<%= link "Manage", class: "hover:underline",
to: Routes.ammo_group_index_path(CanneryWeb.Endpoint, :index) %>
-
+
+ <%= if @current_user.role == :admin do %>
+ -
+ <%= link "Invites", class: "hover:underline",
+ to: Routes.invite_index_path(CanneryWeb.Endpoint, :index) %>
+
+ <% end %>
+
<%# search %>
-
+
<%= link @current_user.email, class: "hover:underline",
to: Routes.user_settings_path(CanneryWeb.Endpoint, :edit) %>
@@ -67,10 +74,10 @@
<% else %>
<%= if Accounts.allow_registration?() do %>
-
- <%= link "Register", class: "hover:underline",
- to: Routes.user_registration_path(CanneryWeb.Endpoint, :new) %>
-
+
+ <%= link "Register", class: "hover:underline",
+ to: Routes.user_registration_path(CanneryWeb.Endpoint, :new) %>
+
<% end %>
@@ -95,4 +102,4 @@
<%= live_flash(@flash, :error) %>
<% end %>
-
\ No newline at end of file
+