Sort custom emoji by name

This commit is contained in:
Thomas Sileo
2019-10-01 23:14:04 +02:00
parent 6090b59c7f
commit 91f879d213
2 changed files with 5 additions and 4 deletions

View File

@@ -35,7 +35,7 @@
{% for emoji in emojis %}
<span class="ji">{{ emoji | emojify | safe }}</span>
{% endfor %}
{% for emoji in custom_emojis.values() %}
{% for emoji in custom_emojis %}
<span class="ji"><img src="{{emoji.get_icon_url()}}" alt="{{emoji.name}}" title="{{emoji.name}}" class="custom-emoji"></span>
{% endfor %}
</p>