{% extends "base.html" %} {% macro status(name) -%} {% if name == 'L' %}L{% elif name == 'E' %}E{% elif name == 'C' %}C{% elif name == 'B' %}B{% endif %} {%- endmacro %} {% block body %}

Yes I am alive...

With those plugins ({{status('L')}}=Loaded, {{status('E')}}=Error, {{status('B')}}=Blacklisted/Unloaded), {{status('C')}}=Needs to be configured) :

{% for state, name in plugins_statuses %}

[{{status(state)}}] {{ name }}

{% endfor %}

Load {{loads[0]}}, {{loads[1]}}, {{loads[2]}}
GC 0->{{gc[0]}} 1->{{gc[1]}} 2->{{gc[2]}}

{% endblock %}