{% extends 'base.html' %} {% load i18n %} {% load static %} {% load url from future %} {% block title %}{% trans "Applications" %}{% endblock %} {% block page_header %} {% include "horizon/common/_page_header.html" with title=_("Applications") %} {% endblock page_header %} {% block js %} {% include "horizon/_scripts.html" %} {% endblock %} {% block main %}

Recent Activity

{% if latest_list|length > 0 %}
{% for app in latest_list %} {% include 'catalog/app_tile.html' %} {% endfor %}
{% else %}

{% trans "No recent activity to report at this time." %}

{% endif %}

{% trans 'App Category:' %}

{% include 'catalog/env_switcher.html' %}
{% if object_list|length > 0 %}
{% for app in object_list %} {% include 'catalog/app_tile.html' %} {% endfor %}
{% if view.has_prev_page %} {% trans "Previous Page" %} {% endif %} {% if view.has_next_page %} {% trans "Next Page" %} {% endif %}
{% else %}

{% blocktrans %} There are no applications in the catalog. You can import apps from {{ repo_url }}.

Go to Package Definitions, click 'Import Package' and select Repository as a Package Source. {% endblocktrans %}

{% endif %}
{% endblock %}