source = $this->getSourceContext();
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doGetParent(array $context)
{
// line 1
return "server/status/base.twig";
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 2
$context["active"] = "processes";
// line 1
$this->parent = $this->loadTemplate("server/status/base.twig", "server/status/processes/index.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 3
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
// line 4
echo "
";
// line 19
echo ($context["server_process_list"] ?? null);
echo "
";
// line 21
echo call_user_func_array($this->env->getFilter('notice')->getCallable(), [_gettext("Note: Enabling the auto refresh here might cause heavy traffic between the web server and the MySQL server.")]);
echo "