%
_.each(favorites,function(favorite, index){
%>
<%
if (favorite['location']['access'] == 3 && typeof(favorite['location']['owner']) !== 'undefined') {
print(favorite['location']['owner']['first_name']);
var last_name = favorite['location']['owner']['last_name'];
if (last_name != "") {
print(" " + last_name.substr(0,1) + "'s Home Station");
}
} else {
print(favorite['location']['name']);
}
%>
<%= favorite['location']['address']%>
<% if (index != favorites.length - 1) { %> <% } %> <% }); %>