<% @translations.each do |t| %>
<%= t[:locale].to_s.upcase %>
<% if t[:exists] %>
<%= t[:title] %> — updated <%= t[:updated_at] %>
<% if t[:outdated] %>may be outdated<% end %>
<%= link_to 'Edit', edit_node_translation_path(@node, t[:locale]) %>
<% else %>
Not yet translated.
<%= link_to 'Add', edit_node_translation_path(@node, t[:locale]) %>
<% end %>
<% end %>