umap/youmap/templates/leaflet_storage/map_list.html

12 lines
494 B
HTML
Raw Normal View History

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