{% extends "base.html" %} {% block extra_js %} function details(deployment_id, column, row_id) { $("#detail").load('/' + deployment_id + '/details/' + column + '/' + row_id); }; function expand(deployment_id, row_id) { $("#row_expansion_" + row_id).load('/' + deployment_id + '/expand/' + row_id); }; function search_form(deployment_id) { var field = $("#field").val(); var value = $("#query").val(); var count = $("#count").val(); var updates = $("#updates").is(":checked") var data = {'field':field, 'value':value, 'updates':updates, 'count':count}; $("#detail").load('/' + deployment_id + '/search/', data); return false; }; {% endblock %} {% block extra_init_js %} $('#host-box').resizable(); $('#instance-box').resizable(); {% endblock %} {% block body %}
Recent Activity {% if deployment %}- {{deployment.name}}{%else%}- ALL{%endif%}
{% include "host_status.html" %}
Commands
Include Updates:
Details
click on an item above to see more of the same type.
{% endblock %}