{% extends "base.tree.html" %} {% block content %}

{{server.name}}

{% include "dashboard/server_buttons.html" %}
{% include "dashboard/server_detail_base.html" %}
Edit {% if server.infrastructure_server %} Add virtual server {% endif %}

Server Applications

{% for a in server.applications.all %} {% endfor %}
Application command os
{{a.name}} {{a.command}} {{a.os}} remove

Available Applications

{% for a in server.available_apps %} {% endfor %}
Application command os
{{a.name}} {{a.command}} {{a.os}} add
{% endblock %} {% block require-js-extra %} requirejs(['servers'], function (Mod){ Mod.init({{AJAX_RELOAD}}, "{{SERVER_RUNNING}}", "{{SERVER_STOPPED}}", "{{SERVER_PAUSED}}", "{{SERVER_UNKNOWN}}", "{{SERVER_REBOOT}}"); }); {% endblock%}