mirror of
https://github.com/minetest/contentdb.git
synced 2024-12-22 14:02:24 +01:00
Fix tags on spotlight carousel being untranslated
This commit is contained in:
parent
a99a8a4df3
commit
7cf1f40ff6
@ -69,9 +69,10 @@
|
||||
{{ warning.title }}
|
||||
</span>
|
||||
{% endfor %}
|
||||
{% for t in tags[:3] %}
|
||||
<span class="badge bg-primary" title="{{ t.description or '' }}">
|
||||
{{ t.title }}
|
||||
{% for tag in tags[:3] %}
|
||||
{% set trans = tag.get_translated() %}
|
||||
<span class="badge bg-primary" title="{{ trans.description or '' }}">
|
||||
{{ trans.title }}
|
||||
</span>
|
||||
{% endfor %}
|
||||
<span class="btn" title="{{ _('Reviews') }}">
|
||||
|
Loading…
Reference in New Issue
Block a user