{% extends 'portal.html' %} {% block title %}Sideload PBSHM Modules{% endblock %} {% block javascript %} {% endblock %} {% block title_call_to_action %} Sideload template {% endblock %} {% block content %} {% if error|length > 0 %}
Error processing upload
{{ error }}
{% else %}
Warning!
Sideloading modules enables third party software to be installed into your system and gives them full access to data stored within your database. Installing a third party module may irrevocably damage your system and require a full reinstallation of the framework or system. Only upload a module, if you trust the author of the module and the python running the framework is inside a virtual environment.
{% endif %}
PBSHM Module Configuration (JSON file)
{% for module in modules %} {% endfor %}
Package Namespace Path URL Prefix Status
{{ module["package"]["name"] if "name" in module["package"] else module["package"] }} {{ module["namespace"] }} {% for item in module["path"] %} {{ ' -> ' + item if loop.index > 1 else item}} {% endfor %} {{ module["url_prefix"] }} {% if module['enabled'] %} Uninstall {% else %} Install {% endif %}
{% endblock %}