umap/youmap/templates/chickpea/map_list.html
2012-12-07 13:40:57 +01:00

12 lines
No EOL
349 B
HTML

{% load chickpea_tags endless %}
{% paginate 5 maps %}
{% for map_inst in maps %}
<div class="twelve mobile-six columns">
{% map_fragment map_inst %}
<div class="panel"><strong>{{ map_inst.name }}</strong> — {{ map_inst.description }} <a href="{{ map_inst.get_absolute_url }}">See this map!</a></div>
</div>
{% endfor %}
{% show_more %}