2013-01-11 23:49:59 +00:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# Shows a list of all maps, or just a user's maps.
|
|
|
|
# TODO: What url is this accessible at?
|
|
|
|
#%>
|
2012-12-25 23:29:20 +00:00
|
|
|
<h1 class="index"><% if @user %><%= @user.name %>'s<% end %> Maps</h1>
|
2012-10-26 10:04:52 +00:00
|
|
|
|
|
|
|
<div class="maps" id="cards">
|
|
|
|
<% @maps.each do |map| %>
|
|
|
|
<%= render map %>
|
|
|
|
<% end %>
|
|
|
|
<% if @maps.empty? %>
|
2012-12-25 23:29:20 +00:00
|
|
|
<p class="empty"><br>Shucks, there are no maps. <% if authenticated? %><%= link_to "Create one if you want.", new_map_url %><% end %></p>
|
2012-10-26 10:04:52 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
2013-01-11 23:49:59 +00:00
|
|
|
<div class="clearfloat"></div>
|