{% extends "admin_base.html" %} {% block title %}Viewing Plugin {{ plugin.slug }}.js{% endblock %} {% block content %}
{% if flash.info is defined %} {{ flash.info.0|raw }} {% endif %}

Viewing Plugin: {{ plugin.name}}

{{ plugin.description|raw }}

This plugin refers to a file called main.js in the lib/plugins/{{ plugin.slug }} folder of Scales instances on nodes.

Default Startup Command

{{ plugin.default_startup }}

Variables

{% for key, var in vars %} {% endfor %}
Identifier Description Default Editable Required
${{{ key }}} {{ var.description|raw }} {{ var.default }}
{% if var.editable == true %}{% else %}{% endif %}
{% if var.required == true %}{% else %}{% endif %}

Servers Running this Plugin

{% for server in servers %} {% endfor %}
Name Node
{{ server.name }} {{ server.node_name }}

{% endblock %} {% block javascript %}{% endblock %}