{% extends 'murano_base.html' %} {% load i18n %} {% load static %} {% load compress %} {% block title %}{% trans "Browse" %}{% endblock %} {% block css %} {{ block.super }} {% compress css %} {% endcompress %} {% endblock %} {% block page_header %} {% include "horizon/common/_page_header.html" with title=_("Browse") %} {% endblock page_header %} {% block main %}

{% trans '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 %}
{% 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 %}

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

{% blocktrans trimmed %}Go to Packages , click 'Import Package' and select Repository as Package Source. {% endblocktrans %} {% else %} {% trans "There are no applications matching your criteria." %} {% endif %}

{% endif %}
{% endblock %}