<%= _t('dataset.delete.title', { tableName: tableName }) %>

<%- _t('dataset.delete.desc') %>

<% if (affectedVisCount > 0) { %>

<% if (affectedVisCount > maxVisCount) {%> <%= _t('dataset.delete.affected-vis-count-extended', {affectedVisCount: affectedVisCount}) %> <% } else { %> <%= _t('dataset.delete.affected-vis-count', {smart_count: affectedVisCount}) %> <% } %>

    <% visibleAffectedVis.forEach(function(vis) { %>
  • <%- vis.name %>

    <%- vis.timeDiff %>

  • <% }); %>
<% } %> <% if (affectedEntitiesCount > 0 || organizationAffected) { %>

<% if (organizationAffected) { %> <%= _t('dataset.delete.whole-organization-affected') %> <% } else if (affectedEntitiesCount > maxEntitiesCount && visibleAffectedEntities.length > 0) {%> <%= _t('dataset.delete.affected-entities-count-extended', {affectedEntitiesCount: affectedEntitiesCount}) %> <% } else { %> <%= _t('dataset.delete.affected-entities-count', {smart_count: affectedEntitiesCount}) %> <% } %>

    <% visibleAffectedEntities.forEach(function(entity) { %> <% if (entity.avatarUrl) { %>
  • <% } %> <% }); %>
<% } %>