{% extends 'admin/base.html' %} {% block _title %}{{ _('Emojis') }}{% endblock %} {% set emojis_link = 'active' %} {% block _content %}

{{ _('Custom emojis') }}

{{ _('Add custom emojis to your {} instance').format(const.appName) }}

{{ _('Upload') }}


{{ _('Supported archive formats:') }} .zip, .tar, .tar.gz, .tar.bz2, .tar.xz

{{ _('Manage') }}

{{ _('Emojis') }}

{% if emojis %}
{% for emoji in emojis %} {% include 'snippets/admin/emojiRow.html' %} {% endfor %}
{{ _('Image') }} {{ _('Name') }} {{ _('Filename') }} {{ _('Actions') }}
{% else %}

{{ _('No emojis uploaded') }}

{% endif %}

{{ _('Emoji packs') }}

{{ _('Please note that if meta.json is not found in the archive, preview images are selected by first emoji name to appear alphabetically, so they may not be accurate sometimes') }}

{% if packs %}
{% if json_pack %} {% endif %} {% for pack in packs %} {% with json_pack = json_pack, index = loop.index - 1 %} {% include 'snippets/admin/packRow.html' %} {% endwith %} {% endfor %}
{{ _('Image') }} {{ _('Name') }}{{ _('Author') }} {{ _('Released') }}{{ _('Folder') }} {{ _('Actions') }}
{% else %}

{{ _('No emoji packs uploaded') }}

{% endif %} {% endblock %}