mirror of
https://github.com/umap-project/umap.git
synced 2025-05-05 22:11:50 +02:00

This is not the same as the short SITE_NAME which is displayed as the title of the (home)page for instance.
26 lines
673 B
HTML
26 lines
673 B
HTML
{% extends "umap/content.html" %}
|
||
|
||
{% load i18n %}
|
||
|
||
{% block head_title %}
|
||
{% blocktranslate %}{{ current_user }}’s maps{% endblocktranslate %} - {{ SITE_DESCRIPTION }}
|
||
{% endblock head_title %}
|
||
|
||
{% block maincontent %}
|
||
<div class="col wide">
|
||
<h2 class="section">
|
||
{% blocktrans %}Browse {{ current_user }}'s maps{% endblocktrans %}
|
||
</h2>
|
||
</div>
|
||
<div class="wrapper">
|
||
<div class="map_list row">
|
||
{% if maps %}
|
||
{% include "umap/map_list.html" %}
|
||
{% else %}
|
||
<div>
|
||
{% blocktrans %}{{ current_user }} has no maps.{% endblocktrans %}
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
{% endblock maincontent %}
|