{% extends "base.html" %} {% block title %}{{ app.title }} - Marketplace - Hop3 Dashboard{% endblock %} {% block content %}
{% if app.icon_url %} {{ app.title }} {% else %}
{{ app.initials }}
{% endif %}

{{ app.title }}

by {{ app.author }}

{% if app.category %} {{ app.category }} {% endif %} {{ app.resource_tier }}

Description

{% if app.long_description %}

{{ app.long_description }}

{% else %}

{{ app.description }}

{% endif %}

Technical Details

{% if app.min_memory %}
Minimum Memory
{{ app.min_memory }} MB
{% endif %} {% if app.version %}
Version
{{ app.version }}
{% endif %} {% if app.providers %}
Required Services
{% for provider in app.providers %} {{ provider }} {% endfor %}
{% endif %} {% if app.website %} {% endif %}
{% if app.tags %}

Tags

{% for tag in app.tags %} {{ tag }} {% endfor %}
{% endif %}

Install Application

{% if errors %}

Please fix the following errors:

    {% for error in errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

Lowercase letters, numbers, and hyphens only. Must start with a letter.

{% if app.providers %}

Required Services

This app requires: {{ app.providers | join(', ') }}. These will be automatically provisioned.

{% endif %}
{% if similar_apps %}

Similar Apps

{% for similar_app in similar_apps %} {% set app = similar_app %} {% include "dashboard/marketplace/_app_card.html" %} {% endfor %}
{% endif %}
{% endblock %}