{% extends "base.html" %} {% block title %}Module Manager - ScanLook{% endblock %} {% block content %}

Module Manager

Install, manage, and configure ScanLook modules

{% if modules %}
{% for module in modules %}
{% if module.icon %} {% else %} {% endif %}

{{ module.name }}

{{ module.description }}

{% if module.is_installed and module.is_active %} Active {% elif module.is_installed %} Inactive {% else %} Not Installed {% endif %}
{% if not module.is_installed %} {% elif module.is_active %} {% else %} {% endif %}
{% endfor %}
{% else %}

No Modules Found

No modules found in the /modules directory.

Upload a module package to get started.

{% endif %}
{% endblock %}