<td class="selection" data-order="<%- attributes['_sort'] %>"><label for="select<%- attributes['_sort'] %>InputCheckbox" class="hiddenStructure" aria-label="<%- _t('Select') %>"><%- _t('Select') %></label><input class="form-check-input" id="select<%- attributes['_sort'] %>InputCheckbox" <% if(selected){ %> checked="checked" <% } %> type="checkbox"/></td>

<td class="title">
  <div>
    <div>
      <a href="<%- viewURL %>"
          class="manage state-<%- review_state %> contenttype-<%- contenttype %>"
          title="<%- portal_type %>">
        <%= mimeIcon %>
        <% if(Title){ %>
          <%- Title %>
        <% } else { %>
          <em><%- id %></em>
        <% } %>
      </a>
      <% if(exclude_from_nav){ %>
        <span class="badge text-bg-secondary plone-item-exclude-from-nav"><%- _t('Excluded from navigation') %></span>
      <% } %>
      <% if(expired){ %>
        <span class="badge text-bg-danger plone-item-expired"><%- _t('Expired') %></span>
      <% } %>
      <% if(ineffective){ %>
        <span class="badge text-bg-warning plone-item-ineffective"><%- _t('Before publishing date') %></span>
      <% } %>
      <% if(activeColumns.indexOf('Description') !== -1 && _.has(availableColumns, 'Description') && Description) { %>
      <p class="Description">
        <small>
          <%- Description %>
        </small>
      </p>
      <% } %>
    </div>
    <% if(attributes["getIcon"] && thumb_scale) { %>
      <div class="lead-img">
        <img class="thumb-<%- thumb_scale %>" alt="<%- _t('Preview image') %> <%- Title || id %>" src="<%- getURL %>/@@images/image/<%- thumb_scale %>">
      </div>
    <% } %>
  </div>
</td>

<% _.each(activeColumns, (column) => { %>
  <% if(column !== 'Description' && _.has(availableColumns, column)) { %>
    <td class="<%- column %>" <% if (column === 'review_state') { %>style="color: var(--plone-state-<%-attributes[column]%>)"<% } %> data-order="<%- attributes[column] %>"><%- convertColumnValue(column, attributes[column]) %></td>
  <% } %>
<% }); %>

<td class="actionmenu-container"></td>
