umap/youmap/templates/chickpea/map_list.html

12 lines
454 B
HTML
Raw Normal View History

2012-12-07 06:40:57 -06:00
{% load chickpea_tags endless %}
{% paginate 5 maps %}
{% for map_inst in maps %}
<div class="twelve mobile-six columns">
{% map_fragment map_inst %}
2012-12-11 13:07:24 -06:00
<div class="panel"><strong>{{ map_inst.name }}</strong> — «{{ map_inst.description }}» <em>Cured by <a href="{% url user_maps map_inst.owner.username %}">{{ map_inst.owner }}</a></em><a href="{{ map_inst.get_absolute_url }}">See this map!</a></div>
2012-12-07 06:40:57 -06:00
</div>
{% endfor %}
{% show_more %}