diff --git a/lib/towerops_web/live/admin/dashboard_live.html.heex b/lib/towerops_web/live/admin/dashboard_live.html.heex index 5670be41..0d00c7d7 100644 --- a/lib/towerops_web/live/admin/dashboard_live.html.heex +++ b/lib/towerops_web/live/admin/dashboard_live.html.heex @@ -1,4 +1,4 @@ - +

Admin Dashboard

diff --git a/lib/towerops_web/live/admin/org_live/index.html.heex b/lib/towerops_web/live/admin/org_live/index.html.heex index 9eda00ef..ea2d342b 100644 --- a/lib/towerops_web/live/admin/org_live/index.html.heex +++ b/lib/towerops_web/live/admin/org_live/index.html.heex @@ -1,4 +1,4 @@ - +

All Organizations

diff --git a/lib/towerops_web/live/admin/user_live/index.html.heex b/lib/towerops_web/live/admin/user_live/index.html.heex index 85bf4b7e..8fd3c257 100644 --- a/lib/towerops_web/live/admin/user_live/index.html.heex +++ b/lib/towerops_web/live/admin/user_live/index.html.heex @@ -1,4 +1,4 @@ - +

All Users

diff --git a/lib/towerops_web/live/agent_live/edit.html.heex b/lib/towerops_web/live/agent_live/edit.html.heex index 4f1cb434..5765c389 100644 --- a/lib/towerops_web/live/agent_live/edit.html.heex +++ b/lib/towerops_web/live/agent_live/edit.html.heex @@ -1,4 +1,4 @@ - +
<.link diff --git a/lib/towerops_web/live/agent_live/index.html.heex b/lib/towerops_web/live/agent_live/index.html.heex index d8ef9d5e..a1d4d4ac 100644 --- a/lib/towerops_web/live/agent_live/index.html.heex +++ b/lib/towerops_web/live/agent_live/index.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="agents" + timezone={@timezone} > <.header> {@page_title} diff --git a/lib/towerops_web/live/agent_live/show.html.heex b/lib/towerops_web/live/agent_live/show.html.heex index 2f1d810e..baf6ca84 100644 --- a/lib/towerops_web/live/agent_live/show.html.heex +++ b/lib/towerops_web/live/agent_live/show.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="agents" + timezone={@timezone} > <.header> {@page_title} diff --git a/lib/towerops_web/live/alert_live/index.html.heex b/lib/towerops_web/live/alert_live/index.html.heex index ea50e007..7a5ea29e 100644 --- a/lib/towerops_web/live/alert_live/index.html.heex +++ b/lib/towerops_web/live/alert_live/index.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="alerts" + timezone={@timezone} > <.header> Alerts diff --git a/lib/towerops_web/live/dashboard_live.html.heex b/lib/towerops_web/live/dashboard_live.html.heex index a4ed4e82..528b9ca5 100644 --- a/lib/towerops_web/live/dashboard_live.html.heex +++ b/lib/towerops_web/live/dashboard_live.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="dashboard" + timezone={@timezone} > <.header> Dashboard diff --git a/lib/towerops_web/live/device_live/index.html.heex b/lib/towerops_web/live/device_live/index.html.heex index 03c051e7..6012e0fc 100644 --- a/lib/towerops_web/live/device_live/index.html.heex +++ b/lib/towerops_web/live/device_live/index.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="devices" + timezone={@timezone} > <.header> {@page_title} diff --git a/lib/towerops_web/live/device_live/show.html.heex b/lib/towerops_web/live/device_live/show.html.heex index 5cd0ec73..8191f67e 100644 --- a/lib/towerops_web/live/device_live/show.html.heex +++ b/lib/towerops_web/live/device_live/show.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="devices" + timezone={@timezone} >
diff --git a/lib/towerops_web/live/graph_live/show.html.heex b/lib/towerops_web/live/graph_live/show.html.heex index 6fc7ac23..8213b20c 100644 --- a/lib/towerops_web/live/graph_live/show.html.heex +++ b/lib/towerops_web/live/graph_live/show.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="devices" + timezone={@timezone} >
diff --git a/lib/towerops_web/live/mobile_qr_live.ex b/lib/towerops_web/live/mobile_qr_live.ex index 08fcf7e0..7ac8e5cb 100644 --- a/lib/towerops_web/live/mobile_qr_live.ex +++ b/lib/towerops_web/live/mobile_qr_live.ex @@ -84,7 +84,7 @@ defmodule ToweropsWeb.MobileQRLive do @impl true def render(assigns) do ~H""" - +
<.header> Mobile App Login diff --git a/lib/towerops_web/live/org_live/index.html.heex b/lib/towerops_web/live/org_live/index.html.heex index a37963ae..375b1c85 100644 --- a/lib/towerops_web/live/org_live/index.html.heex +++ b/lib/towerops_web/live/org_live/index.html.heex @@ -1,4 +1,9 @@ - + <.header> {@page_title} <:actions> diff --git a/lib/towerops_web/live/org_live/new.html.heex b/lib/towerops_web/live/org_live/new.html.heex index 09cd2c54..9d98d58f 100644 --- a/lib/towerops_web/live/org_live/new.html.heex +++ b/lib/towerops_web/live/org_live/new.html.heex @@ -1,4 +1,9 @@ - + <.header> {@page_title} <:subtitle>Create a new organization to manage your sites and devices diff --git a/lib/towerops_web/live/site_live/index.html.heex b/lib/towerops_web/live/site_live/index.html.heex index baa50588..f4d4548e 100644 --- a/lib/towerops_web/live/site_live/index.html.heex +++ b/lib/towerops_web/live/site_live/index.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="sites" + timezone={@timezone} > <.header> {@page_title} diff --git a/lib/towerops_web/live/site_live/show.html.heex b/lib/towerops_web/live/site_live/show.html.heex index f4e24576..2a6eaad5 100644 --- a/lib/towerops_web/live/site_live/show.html.heex +++ b/lib/towerops_web/live/site_live/show.html.heex @@ -3,6 +3,7 @@ current_scope={@current_scope} current_organization={@current_organization} active_page="sites" + timezone={@timezone} > <.header> {@page_title} diff --git a/lib/towerops_web/live/user_settings_live.ex b/lib/towerops_web/live/user_settings_live.ex index 34a4bbe0..f78ddf2c 100644 --- a/lib/towerops_web/live/user_settings_live.ex +++ b/lib/towerops_web/live/user_settings_live.ex @@ -260,6 +260,7 @@ defmodule ToweropsWeb.UserSettingsLive do flash={@flash} current_scope={@current_scope} current_organization={@default_organization} + timezone={@timezone} >