include containing bundle information (so CLI users can delete)
diff --git a/src/main/webapp/assets/tpl/catalog/details-entity.html b/src/main/webapp/assets/tpl/catalog/details-entity.html
index 02371c7..552291f 100644
--- a/src/main/webapp/assets/tpl/catalog/details-entity.html
+++ b/src/main/webapp/assets/tpl/catalog/details-entity.html
@@ -31,6 +31,10 @@
     <% } else { %>
         <h2><%- model.getVersionedAttr("symbolicName") %></h2>
     <% } %>
+    <% if (model.get("containingBundle")) { %>
+        <p> Bundle: <%- model.get("containingBundle") %> </p>
+    <% } %>
+     
     <% if (model.get("description")) { %>
         <p><%- model.get("description") %></p>
     <% } %>
diff --git a/src/main/webapp/assets/tpl/catalog/details-generic.html b/src/main/webapp/assets/tpl/catalog/details-generic.html
index 4995632..0e4e041 100644
--- a/src/main/webapp/assets/tpl/catalog/details-generic.html
+++ b/src/main/webapp/assets/tpl/catalog/details-generic.html
@@ -28,6 +28,9 @@
     <% } else if (model.get("type") !== undefined) { %>
         <h2><%- model.get("type") %></h2>
     <% } %>
+    <% if (model.get("containingBundle")) { %>
+        <p> Bundle: <%- model.get("containingBundle") %> </p>
+    <% } %>
 
     <dl>
         <% _.each(model.attributes, function(value, key) { %>
diff --git a/src/main/webapp/assets/tpl/catalog/details-location.html b/src/main/webapp/assets/tpl/catalog/details-location.html
index 850c76c..a2c865a 100644
--- a/src/main/webapp/assets/tpl/catalog/details-location.html
+++ b/src/main/webapp/assets/tpl/catalog/details-location.html
@@ -38,6 +38,9 @@
     <% } else { %>
         <h2><%- model.get("name") %></h2>
     <% } %>
+    <% if (model.get("containingBundle")) { %>
+        <p> Bundle: <%- model.get("containingBundle") %> </p>
+    <% } %>
     <% if (model.get("description")) { %>
         <p><%- model.get("description") %></p>
     <% } %>