{% extends "layouts/main.html" %} {% block title %}{{ app.display_name }} — Apps — pyvelm{% endblock %} {% block page_title %}{{ app.display_name }}{% endblock %} {% block page_actions %}
{% include "apps/_actions.html" %}
{% endblock %} {% block content %}
{% with size='w-11 h-11', icon_size='w-6 h-6' %} {% include "apps/_icon.html" %} {% endwith %}
{% include "apps/_state_badge.html" %} {{ app.category }}
{% if app.author %}

by {{ app.author }}

{% endif %}
Technical name
{{ app.name }}
Version
{% if app.version_upgrade %} {{ app.installed_version }} → {{ app.available_version }} {% elif app.has_schema_diff %} {{ app.installed_version }} (schema changes pending) {% elif app.installed_version %} {{ app.installed_version }} (available {{ app.available_version }}) {% else %} {{ app.available_version }} {% endif %}
{% if app.depends %}
Depends on
{% for d in app.depends %} {{ d }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %}
{% if app.summary %}

Summary

{{ app.summary }}

{% endif %}

Documentation

{% if app.description %}
{{ app.description }}
{% else %}

No extended description in the module manifest.

{% endif %}
{% include "apps/_scripts.html" %} {% endblock %}