<% if (isEditable) { %> <%- _("Rename").t() %> <%- _("Delete").t() %> <% } %>

<%- object.get("displayName") %>

<%- object.get("objectName") %>

<% if (object.get("parentName") == "BaseSearch") { %>
<%- _("Base Search").t() %>
<% if (object.get("parentName") == "BaseSearch") { %> <%- _("Search").t() %> <% if (isEditable) { %> <%- _("Edit").t() %> <% } %> <% } else { %> <%- _("Inherited").t() %> <% } %>
<%- (object.get("baseSearch")) %>
<% } %> <% if (object.get("parentName") != "BaseSearch") { %>
<%- _("Constraints").t() %>
<% if(object.getInheritedConstraints().length > 0) { %>
<% _(object.getInheritedConstraints()).each(function(constraint, index) { %>
<%- _("Inherited").t() %>
<%- constraint.search %>
<% }); %>
<% } %>
<% if (isEditable) { %> <%- _("Edit").t() %> <% } %>
<% if (object.get("parentName") != "BaseTransaction") { %> <%- _("Constraint").t() %>
<%- (object.getOwnConstraint() && object.getOwnConstraint().search) || "(" + _("None").t()+ ")" %>
<% } else { %> <%- _("Transaction").t() %>
<%- _("Group Objects").t() %> <%- object.get("objectsToGroup").toString() %>
<%- _("Group By").t() %> <%- object.get("groupByFields").toString() %>
<%- _("Max Pause").t() %> <%- object.get("transactionMaxPause").toString() %>
<%- _("Max Span").t() %> <%- object.get("transactionMaxTimeSpan").toString() %>
<% } %>
<% } %>
<% if(object.getInheritedFields().length > 0) { %>
<%- _("Inherited").t() %>
<% _(object.getInheritedFields()).each(function(attribute, index) { %>
data-calc-id="<%- attribute.calculationID %>" <% } %> > <% if (!attribute.calculationID && isEditable) { %> <%- _("Override").t() %> <% } %>
<%- attribute.localizedType %> <% if (attribute.hidden) { %><%- _("Hidden").t() %><% } %> <% if (attribute.required) { %><%- _("Required").t() %><% } %>
<% }); %>
<% } %> <% if(object.getOwnFields().length > 0) { %>
<%- _("Extracted").t() %>
<% _(object.getOwnFields()).each(function(attribute, index) { %>
<% if (attribute.editable && isEditable) { %> <%- _("Edit").t() %> <% } %>
<%- attribute.localizedType %> <% if (attribute.hidden) { %><%- _("Hidden").t() %><% } %> <% if (attribute.required) { %><%- _("Required").t() %><% } %>
<% }); %>
<% } %> <% if(object.getOwnCalculations().length > 0) { %>
<%- _("Calculated").t() %>
<% _(object.getOwnCalculations()).each(function(calculation, index) { %>
<%- calculation.expandedType %> <% if (calculation.editable && isEditable) { %> <%- _("Edit").t() %> <% } %> <% _(calculation.outputFields).each(function(field, index) { %> <% if (!(calculation.calculationType == "GeoIP" && field.hidden)) { %>
<%- field.localizedType %> <% if (field.hidden) { %><%- _("Hidden").t() %><% } %> <% if (field.required) { %><%- _("Required").t() %><% } %>
<% } %> <% }); %>
<% }); %>
<% } %>