diff --git a/app/views/projects/_project_settings.rhtml b/app/views/projects/_project_settings.rhtml
index fe7103af..6b1e5b10 100644
--- a/app/views/projects/_project_settings.rhtml
+++ b/app/views/projects/_project_settings.rhtml
@@ -1,8 +1,5 @@
- <% unless project.description.blank? -%>
-
<%= sanitize(project.description) %>
- <% end -%>
-
This project
+
This project
<% if project.completed? -%>has been marked as completed
<% elsif project.hidden? -%>has been marked as hidden
<% else -%>is active
@@ -25,7 +22,10 @@
:before => "$('#{dom_id(project)}').startWaiting();",
:complete => "$('#{dom_id(project)}').stopWaiting();"
) %>
-
+
+ <% unless project.description.blank? -%>
+
<%= sanitize(project.description) %>
+ <% end -%>