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

Latest Apps

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

{% trans "There are no applications available at this time." %}

{% endif %}

App Category:

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

{% trans "There are no applications matching your search criteria." %}

{% endif %} {% if is_paginated %}
{% if page_obj.has_previous %} {% with page_number=page_obj.previous_page_number link_text="Previous" %} {% include 'catalog/page_link.html' %} {% endwith %} {% else %} Previous {% endif %} {{ page_obj.number }} {% if page_obj.has_next %} {% with page_number=page_obj.next_page_number link_text="Next" %} {% include 'catalog/page_link.html' %} {% endwith %} {% else %} Next {% endif %}
{% endif %}
{% include 'catalog/env_switcher.html' %}
{% include 'catalog/categories.html' %}

Search

{% endblock %}