{% load i18n %}
{% if unavailable %}
{% trans 'ERROR: uWSGI is not available!' %}
{% else %}
{% trans 'Status' %}
{% trans "Option" %} |
{% trans "Value" %} |
{% for key, value in stats %}
{{ key }} |
{{ value }} |
{% endfor %}
{% trans 'Options' %} (read docs)
{% trans "Option" %} |
{% trans "Value" %} |
{% for key, value in uwsgi.opt.items %}
{{ key }} |
{# uWSGI allows to use options without values if value = true #}
{% if value %}{{ value.decode }}{% else %}true{% endif %} |
{% endfor %}
{% trans 'Magic table' %} (read docs)
{% trans "Option" %} |
{% trans "Value" %} |
{% for key, value in uwsgi.magic_table.items %}
{{ key.decode }} |
{{ value.decode }} |
{% endfor %}
{% trans 'Workers' %}
{% include 'uwsgi/includes/workers.html' %}
{% trans 'Applications' %}
{% include 'uwsgi/includes/applications.html' %}
{% if uwsgi.spooler_jobs %}
{% trans 'Spooler' %}
{% include 'uwsgi/includes/jobs.html' %}
{% endif %}
{% trans 'Actions' %}
{% trans 'Send uWSGI Signal' %} |
{% trans 'Send uWSGI Log message' %} |
|
|
{% if uwsgi.masterpid %}
{% endif %}
{% endif %}