{% extends "admin/change_list.html" %} {% load i18n %} {% block content %}

{% trans 'Applications' %}

{% for w in workers %} {% for app in w.apps %} {% endfor %} {% endfor %}
worker pid app modifier1 mountpoint interpreter callable chdir requests exceptions
{{ w.id }} {{ w.pid }} {{ app.id }} {{ app.modifier1 }} {{ app.mountpoint.decode|pprint }} {{ app.interpreter }} {{ app.callable }} {{ app.chdir.decode|pprint }} {{ app.requests }} {{ app.exceptions }}
{% endblock %}