{% extends 'base.html' %} {% load i18n sizeformat %} {% load static %} {% load url from future %} {% block title %}{% trans "Application Details" %}{% endblock %} {% block page_header %} {% include "catalog/_details_page_header.html" %} {% endblock page_header %} {% block main %}
{% with class='btn btn-small btn-add ajax-modal' %} {% include 'catalog/add_app.html' %} {% endwith %} {% with class='btn btn-small btn-add ajax-modal' %} {% include 'catalog/quick_deploy.html' %} {% endwith %}

{{ app.name }}

{{ tab_group.render }}
  • Fully Qualified Application Name: {{ app.fully_qualified_name }}
  • Author: {{ app.author }}
  • Active: {{ app.enabled }}
  • Public: {{ app.is_public }}
  • Type: {{ app.type }}
  • Tags: {{ app.tags|join:", " }}
  • Categories: {% for category in app.categories %} {{ category }} {% endfor %}
{% endblock %}