mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-26 19:03:35 +01:00
7 lines
259 B
Django/Jinja
7 lines
259 B
Django/Jinja
{% for tabtype in ['managertab', 'managersearchtab', 'standalonetab', 'sensorstab', 'nodestab', 'evaltab'] %}
|
|
{% set node_type_data = salt['pillar.get'](tabtype, False) %}
|
|
{% if node_type_data %}
|
|
{{ node_type_data | json }}
|
|
{% endif %}
|
|
{% endfor %}
|