<%# # @file # Shows a map as a card. # I believe this is rendered on the profile pages. # TODO: Am I correct? # TODO: Is it rendered on any other pages? #%> <%= div_for map do %> <% if map.user == user %><%= link_to 'Delete', map_path(map), :class => 'delete', :confirm => 'Delete this map (nodes and synapses will remain)?', :method => :delete, :remote => true %><% end %>

Map

<%= image_tag 'map.png', :class => 'icon', :size => '50x50' %> <%=map.name %>
Added by: <%=map.user.name %>

<%= map.topics.count %> topics and <%= map.synapses.count %> synapses

<%= map.desc %>

<% end %>