{% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% load plinth_extras %} {% load static %} {% if clients %}
{% trans "Web" %} | {% endif %} {% for platform in client.platforms %} {% if platform.type == 'web' %}{{ client.name }} | {% trans "Launch" %} | {% endif %} {% endfor %}
---|---|---|
{% trans "Desktop" %} | {% endif %}{{ client.name }} |
{% for platform in client.platforms %}
{% if platform.type == 'download' %}
{% with 'theme/icons/'|add:platform.os|add:'.png' as icon %}
|
{% trans "Mobile" %} | {% endif %}{{ client.name }} |
{% for platform in client.platforms %}
{% if platform.type == 'store' and platform.os == 'android' or platform.os == 'ios' %}
{% with 'theme/icons/'|add:platform.store_name|add:'.png' as icon %}
|
{% trans "Package" %} | {% endif %}{{ client.name }} |
{% for platform in client.platforms %}
{% if platform.type == 'package' %}
{% if platform.format == 'deb' %}
{% trans "Debian:" %} {{ platform.name }}
{% endif %}
{% if platform.format == 'brew' %}
{% trans "Homebrew:" %} {{ platform.name }}
{% endif %}
{% if platform.format == 'rpm' %}
{% trans "RPM:" %} {{ platform.name }} {% endif %} {% endif %} {% endfor %} |