{% extends "hobo/base.html" %} {% load i18n thumbnail %} {% block breadcrumb %} {{ block.super }} {% trans 'Applications' %} {% endblock %} {% block appbar %}

{% trans 'Applications' %}

{% trans 'Install' %} {% trans 'Create' %} {% endblock %} {% block content %} {% if object_list %}
{% for application in object_list %}

{% if application.icon %} {% thumbnail application.icon '64x64' crop='center' format='PNG' as im %} {% endthumbnail %} {% endif %} {{ application.name }}

{{ application.description|default:""|linebreaksbr }}

{% if application.documentation_url %}

{% trans 'Documentation' %}

{% endif %}
{% endfor %}
{% else %}

{% trans "You should find, install or build some applications." %}

{% endif %} {% endblock %}