{% extends "store.html" %} {% block title %}{{ _("List packages") }}{% endblock %} {% block store %}
{% if error_message == 'no_result' %}
{{ ("Oops ! No result !") }}

{{ _("There is no result for your search !") }}

{{ _("Most popular packages") }}

{% for package in most_popular() %}
{{ package[0] }}
{{ package[1].split('-',1)[0] }} | {{ (package[5] or '').replace('T', ' ')[0:16] }}
{% if package[9] %} {{ package[0] }} icon {% else %} default icon {% endif %}
{% if package[7] %} {% for cat in package[7] %}
{{ _(cat) }}
{% endfor %} {% else %}
{% endif %}
{% if package[6] != "None" %} {{ package[6]|string|truncate(120) }} {% endif%}
{{ count_download(package[0]) }} {{ _("downloads") }}
{% for os in get_os(package[0]) %} {% if os.target_os == "windows" %}   {% endif %} {% if os.target_os == "linux" %}   {% endif %} {% if os.target_os == "darwin" %} {% endif %} {% endfor %}
{% endfor %}
{% endif %}
{% for package in packages %}
{{ package[0] }}
{{ package[1].split('-',1)[0] }} | {{ (package[5] or '').replace('T', ' ')[0:16] }}
{% if package[9] %} {{ package[0] }} icon {% else %} default icon {% endif %}
{% if package[7] %} {% for cat in package[7] %}
{{ _(cat) }}
{% endfor %} {% else %}
{% endif %}
{% if package[6] != "None" %} {{ package[6]|string|truncate(120) }} {% endif%}
{{ count_download(package[0]) }} {{ _("downloads") }}
{% for os in get_os(package[0]) %} {% if os.target_os == "windows" %}   {% endif %} {% if os.target_os == "linux" %}   {% endif %} {% if os.target_os == "darwin" %} {% endif %} {% endfor %}
{% endfor %}
{% endblock %}