summaryrefslogtreecommitdiffstats
path: root/glances/outputs/bottle/plugin_text.tpl
blob: 990e74780020f2a9439e81ec1022ab388da75027 (plain)
1
2
3
4
5
6
7
8
9
10
11
% if stats['msgdict'] != []:
<section id="{{ plugin_name }}" class="plugin">
% for msg in stats['msgdict']:
    % if stats['display']:
    <span class="{{ msg['decoration'].lower() }} {{ 'hidden-xs hidden-sm' if msg['optional'] else '' }}">
        {{ msg['msg'] }}
    </span>
    % end
% end
</section>
% end