{% set page_name = "manage_module" %} {% extends "manage_base.html" %} {% block manage_content %}

{{ _('Installed Modules') }}

{% for module in installed %} {% endfor %}
{{ _('ID') }} {{ _('Description') }} {{ _('Size') }} {{ _('Version') }} {{ _('Action') }}
{{ module.id }}{{ _('(Active)') if active.includes(module.id) else '' }} {{ _(module.description|default(_('None'))) }} {{ size(module.size) if module.size else '?' }} {{ module.version|default('?') }} {{ _('Download') }}
{% endblock %}