diff --git a/app/views/other_assets/edit.html.erb b/app/views/other_assets/edit.html.erb
index 930ce27aa..4ec4161f5 100644
--- a/app/views/other_assets/edit.html.erb
+++ b/app/views/other_assets/edit.html.erb
@@ -1,6 +1,9 @@
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: t(".edit", account: @account.name)) %>
<% dialog.with_body do %>
- <%= render "form", account: @account, url: other_asset_path(@account) %>
+
+ <%= render DS::Alert.new(message: t(".balance_tracking_info"), variant: :info) %>
+ <%= render "form", account: @account, url: other_asset_path(@account) %>
+
<% end %>
<% end %>
diff --git a/app/views/other_assets/new.html.erb b/app/views/other_assets/new.html.erb
index 75737adab..7377c88e0 100644
--- a/app/views/other_assets/new.html.erb
+++ b/app/views/other_assets/new.html.erb
@@ -1,6 +1,9 @@
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: t(".title")) %>
<% dialog.with_body do %>
- <%= render "form", account: @account, url: other_assets_path %>
+
+ <%= render DS::Alert.new(message: t(".balance_tracking_info"), variant: :info) %>
+ <%= render "form", account: @account, url: other_assets_path %>
+
<% end %>
<% end %>
diff --git a/config/locales/views/other_assets/en.yml b/config/locales/views/other_assets/en.yml
index be3f0f431..a04066b9a 100644
--- a/config/locales/views/other_assets/en.yml
+++ b/config/locales/views/other_assets/en.yml
@@ -3,5 +3,7 @@ en:
other_assets:
edit:
edit: Edit %{account}
+ balance_tracking_info: "Other Assets are tracked via manual valuations using 'New Balance', not transactions. Cashflow will not affect the account balance."
new:
title: Enter asset details
+ balance_tracking_info: "Other Assets are tracked via manual valuations using 'New Balance', not transactions. Cashflow will not affect the account balance."