umap/umap/templates/auth/user_detail.html

19 lines
403 B
HTML
Raw Normal View History

{% extends "umap/content.html" %}
2012-12-11 13:04:03 -06:00
{% load i18n %}
2012-12-11 13:04:03 -06:00
{% block content %}
<div class="col _35">
<h4>{% blocktrans %}Browse {{ current_user }}'s maps{% endblocktrans %}</h4>
</div>
<div class="col _35 map_list">
{% if maps %}
{% include "leaflet_storage/map_list.html" %}
{% else %}
<div>
2012-12-11 13:04:03 -06:00
{{ current_user }} has not map yet.
</div>
{% endif %}
</div>
2012-12-11 13:04:03 -06:00
{% endblock content %}