diff --git a/app/views/deliverables/_budget.html.erb b/app/views/deliverables/_budget.html.erb
index be4699e..b759826 100644
--- a/app/views/deliverables/_budget.html.erb
+++ b/app/views/deliverables/_budget.html.erb
@@ -4,7 +4,7 @@
<% if allowed_management? %>
|
- Project Budget:
+ Total Budget:
|
<%= h number_to_currency(budget.budget, :precision => 0) %>
@@ -15,7 +15,7 @@
<% if allowed_management? %>
|
|
- Budget Spent:
+ Labor Budget Spent:
|
<%= h number_to_currency(budget.spent, :precision => 0) %>
@@ -26,7 +26,7 @@
<% if allowed_management? %>
|
|
- Budget Remaining:
+ Labor Budget Remaining:
|
<%= h number_to_currency(budget.left, :precision => 0) %>
@@ -85,11 +85,11 @@
<% if allowed_management? %>
|
|
- Profit:
+ Potential Profit:
|
<%= h number_to_currency(budget.profit, :precision => 0) %>
|
<% end %>
-
\ No newline at end of file
+
diff --git a/app/views/deliverables/_deliverable.html.erb b/app/views/deliverables/_deliverable.html.erb
index c67f751..e5509da 100644
--- a/app/views/deliverables/_deliverable.html.erb
+++ b/app/views/deliverables/_deliverable.html.erb
@@ -51,7 +51,7 @@
<%= row_with_data("Labor: ", number_to_currency(deliverable.labor_budget || 0.0, :precision => 0)) -%>
<%= row_with_data("Overhead: ", number_or_percent(deliverable.overhead, deliverable.overhead_percent)) -%>
<%= row_with_data("Materials: ", number_or_percent(deliverable.materials, deliverable.materials_percent)) -%>
- <%= row_with_data("Profit: ", number_or_percent(deliverable.profit, deliverable.profit_percent)) -%>
+ <%= row_with_data("Potential Profit: ", number_or_percent(deliverable.profit, deliverable.profit_percent)) -%>
<% end %>