diff --git a/app/views/equipment/index.html.erb b/app/views/equipment/index.html.erb
index e4d5134c..f05c400e 100644
--- a/app/views/equipment/index.html.erb
+++ b/app/views/equipment/index.html.erb
@@ -6,6 +6,7 @@
| <%= simple_format link_to equipment.name, equipment_path(equipment) %> |
<%= simple_format equipment.equip_type %> |
+ <%= simple_format equipment.description %> |
<%= link_to t('.view', :default => t("helpers.links.view")),
equipment_path(equipment), :class => 'btn btn-mini' %>
diff --git a/app/views/equipment/show.html.erb b/app/views/equipment/show.html.erb
index f2fcd3d1..af889e5b 100644
--- a/app/views/equipment/show.html.erb
+++ b/app/views/equipment/show.html.erb
@@ -5,10 +5,10 @@
<%= print_property("Name", @equipment.name, "") %>
<%= print_property("Type", @equipment.equip_type, "") %>
+ <%= print_property("Description", @equipment.description, "") %>
- <%= print_property("Description", @equipment.description, "") %>
<%= print_property("Weight", @equipment.weight, "") %>
|