All People
<% if (peopleList && peopleList.length > 0) { %>
<%= totalCount %> people identified
<% } else { %>
No people identified yet
<% } %>
Select photos of the same person to merge them. Once you've selected two or more people, select the people icon.
<% if (peopleList && peopleList.length > 0) { %>
<% _.each(peopleList, function(person) {
var avatarImg = person.thumbnail_url;
var hasImg = person.thumbnail_url ? true : false;
%>
<% if (hasImg) { %>

<% } else { %>
<%= avatarImg %>
<% } %>
<% if (person.name) { %>
<%= person.name %>
<% } else { %>
+ Add name
<% } %>
<% }); %>
<% } else { %>
No people yet
Once photos of people are added, they'll appear here
<% } %>