view sat_templates/templates/default/components/images.html @ 183:240bbac435f4

base: implemented language button: - `component.menu` can now be used with a `{% call %}`, allowing extra HTML to be added after in the <nav> element - a language dropdown is shown if more than one translation is available, allowing to change page locale - if javascript is available, only the dropdown is visible, and changing it reload the page with new locale - if javascript is not available, a submit button is display to change the locale
author Goffi <goffi@goffi.org>
date Wed, 10 Apr 2019 21:05:58 +0200
parents e9f0a4215e46
children
line wrap: on
line source

{% macro get_icon_client(ident) %}
    {% if ident.client %}
        {% if ident.client.pc %}
            {{ icon('desktop', cls='file__icon') }}
        {% elif ident.client.phone %}
            {{ icon('mobile', cls='file__icon') }}
        {% elif ident.client.web %}
            {{ icon('globe', cls='file__icon') }}
        {% elif ident.client.console %}
            {{ icon('terminal', cls='file__icon') }}
        {% else %}
            {{ icon('desktop', cls='file__icon') }}
        {% endif %}
    {% endif %}
{% endmacro %}