diff --git a/app/views/deliverables/_budget.html.erb b/app/views/deliverables/_budget.html.erb
index 268cd52..be4699e 100644
--- a/app/views/deliverables/_budget.html.erb
+++ b/app/views/deliverables/_budget.html.erb
@@ -1,48 +1,95 @@
- Project Budget: <%= h number_to_currency(budget.budget, :precision => 0) %>
-
-<% end %>
+
+ <% if allowed_management? %>
+
+ |
+ Project Budget:
+ |
+
+ <%= h number_to_currency(budget.budget, :precision => 0) %>
+ |
+
+ <% end %>
-<% if allowed_management? %>
-
- Budget Spent: <%= h number_to_currency(budget.spent, :precision => 0) %>
-
-<% end %>
+ <% if allowed_management? %>
+
+ |
+ Budget Spent:
+ |
+
+ <%= h number_to_currency(budget.spent, :precision => 0) %>
+ |
+
+ <% end %>
-<% if allowed_management? %>
-
- Budget Remaining: <%= h number_to_currency(budget.left, :precision => 0) %>
-
-<% end %>
+ <% if allowed_management? %>
+
+ |
+ Budget Remaining:
+ |
+
+ <%= h number_to_currency(budget.left, :precision => 0) %>
+ |
+
+ <% end %>
-
- Progress: <%= h number_to_percentage(budget.progress, :precision => 0) %>
-
+
+ |
+ Progress:
+ |
+
+ <%= h number_to_percentage(budget.progress, :precision => 0) %>
+ |
+
-<% if allowed_management? %>
-
- Budget Score: <%= h budget.score %>
-
-<% end %>
+ <% if allowed_management? %>
+
+ |
+ Budget Score:
+ |
+
+ <%= h budget.score %>
+ |
+
+ <% end %>
-<% if allowed_management? %>
-
- Overruns: <%= h number_to_currency(budget.overruns, :precision => 0) %>
-
-<% end %>
+ <% if allowed_management? %>
+
+ |
+ Overruns:
+ |
+
+ <%= h number_to_currency(budget.overruns, :precision => 0) %>
+ |
+
+ <% end %>
-
- Next Due Date: <%= h distance_of_time_in_words_to_now(budget.next_due_date) if budget.next_due_date %>
-
-
- Completion: <%= h distance_of_time_in_words_to_now(budget.final_due_date) if budget.final_due_date %>
-
+
+ |
+ Next Due Date:
+ |
+
+ <%= h distance_of_time_in_words_to_now(budget.next_due_date) if budget.next_due_date %>
+ |
+
+
+ |
+ Completion:
+ |
+
+ <%= h distance_of_time_in_words_to_now(budget.final_due_date) if budget.final_due_date %>
+ |
+
-<% if allowed_management? %>
-
- Profit: <%= h number_to_currency(budget.profit, :precision => 0) %>
-
-<% end %>
+ <% if allowed_management? %>
+
+ |
+ Profit:
+ |
+
+ <%= h number_to_currency(budget.profit, :precision => 0) %>
+ |
+
+ <% end %>
+
\ No newline at end of file