{% extends "base.html" %} {% block title %}{{ app.title }} - Catalog - 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 %}
` which names the app after the blueprint unless --app says otherwise. `app_name` is whatever was typed, so a re-render after a validation error keeps it rather than resetting to the default. #} value="{{ app_name or app.id }}" placeholder="{{ app.id }}" pattern="[a-z][a-z0-9-]*" required class="mt-1 block w-full rounded-md border-0 py-2 px-3 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-blue-600 sm:text-sm">

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

Leave blank to use the server default (<name>.<admin-domain>).

{% 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/catalog/_app_card.html" %} {% endfor %}
{% endif %}
{% endblock %}