diff --git a/umap/static/umap/base.css b/umap/static/umap/base.css index 6374adfd..30c717e5 100644 --- a/umap/static/umap/base.css +++ b/umap/static/umap/base.css @@ -235,3 +235,7 @@ dt { display: block; overflow-x: auto; } +mark { + background-color: var(--color-lightCyan); + padding: 0 var(--small-box-padding); +} diff --git a/umap/templates/umap/search.html b/umap/templates/umap/search.html index 7883bb65..5f619dba 100644 --- a/umap/templates/umap/search.html +++ b/umap/templates/umap/search.html @@ -32,7 +32,16 @@ {% endif %} {% else %}

- {% trans "Latest created maps" %} + {% if request.GET.tags %} + {% trans "Latest created maps in category" %} + {% for value, label in UMAP_TAGS %} + {% if request.GET.tags == value %} + {{ label }}: + {% endif %} + {% endfor %} + {% else %} + {% trans "Latest created maps" %} + {% endif %}

{% include "umap/map_list.html" with prefix="search_map" %}