<% if (photos && photos.length > 0) { %>
<% photos.forEach(photo => { %>
<% }); %>
<% } else { %>
<% } %>
<%= photo.title || '-' %>
Photo Date: <%= photo.photo_date ? new Date(photo.photo_date).toLocaleDateString('en-US', { month: '2-digit', day: '2-digit', year: 'numeric' }) : '-' %>
Upload: <%= photo.uploaded_at || '-' %>
Description:
<%= photo.description || '-' %>
Location:
<%= photo.location || '-' %>
Author:
<% if (photo.username) { %>
<%= photo.display_name || photo.username %>
<% } else { %>
-
<% } %>
Locomotives:
<% if (photo.units && photo.units.length > 0) { %>
<% photo.units.forEach((unit, index) => { %>
<%= unit.railroad %> <%= unit.number %> (<%= unit.model %>)
<% if (index < photo.units.length - 1) { %> • <% } %>
<% }) %>
<% } else if (photo.unit_id) { %>
<%= photo.railroad %> <%= photo.unit_number %> (<%= photo.model %>)
<% } else { %>
No locomotives listed
<% } %>
No photos available. Be the first to upload!