2013-01-11 23:49:59 +00:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# View rendering each map as a card, or empty message. Shows all regardless
|
|
|
|
# of authentication.
|
|
|
|
# TODO: What url is this located at?
|
|
|
|
#%>
|
2012-10-26 10:04:52 +00:00
|
|
|
<h1>All Maps</h1>
|
|
|
|
|
|
|
|
<div class="maps" id="cards">
|
|
|
|
<% @maps.each do |map| %>
|
|
|
|
<%= render map %>
|
|
|
|
<% end %>
|
|
|
|
<% if @maps.empty? %>
|
|
|
|
<p><br>Shucks, there are no maps.<p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2013-01-11 23:49:59 +00:00
|
|
|
<div class="clearfloat"></div>
|