help text support for detail view, tenant view warnings about changing slivers
diff --git a/planetstack/core/xoslib/templates/xosAdmin.html b/planetstack/core/xoslib/templates/xosAdmin.html
index db7218d..cca9ba7 100644
--- a/planetstack/core/xoslib/templates/xosAdmin.html
+++ b/planetstack/core/xoslib/templates/xosAdmin.html
@@ -154,7 +154,7 @@
<script type="text/template" id="xos-detail-template">
<h3 class="xos-detail-title">Edit Object: <%= modelName %></h3>
<form>
- <table>
+ <table class="xos-detail-table">
<% args = arguments; %>
<% _.each(detailFields, function(fieldName) { %>
<tr><td class="xos-label-cell"><%= fieldName in fieldDisplayNames ? fieldDisplayNames[fieldName] : fieldNameToHumanReadable(fieldName) %>:</td>
@@ -176,6 +176,7 @@
<% } else { %>
<td><input type="text" name="<%= fieldName %>" value="<%= model.attributes[fieldName] %>"<%= readOnly %>></td>
<% } %>
+ <td class="xos-help-cell"><%= helpText[fieldName] %></td>
</tr>
<% }); %>
<%= xosInlineDetailButtonsTemplate() %>
@@ -287,7 +288,7 @@
<script type="text/template" id="xos-sliceselector-select">
<% if (caption) { %>
- <table><tr><td class="xos-label-cell"><%= caption %>: </td><td><select></select></td></tr></table>
+ <table class="xos-detail-table"><tr><td class="xos-label-cell"><%= caption %>: </td><td><select></select></td></tr></table>
<% } else { %>
<select></select>
<% } %>