{% extends 'base.html' %} {% block content %}

{{ _('This interface lists all of the processes that currently run on any database on your server.') }}

{% for row in processlist_output.split('\n')[2:] %} {% if row %} {% for column in row.split('\t') %} {% endfor %} {% endif %} {% endfor %}
Id {{ _('User') }} {{ _('Host') }} DB {{ _('Command') }} {{ _('Time') }} {{ _('State') }} {{ _('Info') }}
{{ column }}
{% endblock %}