{% if locks %} {% if show_all %} {% for l in locks %}
PID {{ l.pid }} {{ l.user or 'unknown' }} {% if l.granted %}granted{% else %}waiting{% endif %} {{ l.mode }}
{{ l.lock_type }}: {{ l.locked_item }} {% if l.duration %}{{ l.duration }}{% endif %}
{{ l.query or '' }}
{% if not l.granted %} {% endif %}
{% endfor %} {% else %} {% for l in locks %}
BLOCKED
PID {{ l.blocked_pid }} {{ l.blocked_user }} {{ l.duration }}
{{ l.blocked_query }}
BLOCKING
PID {{ l.blocking_pid }} {{ l.blocking_user }}
{{ l.blocking_query }}
{{ l.mode }} {{ l.locked_item }}
{% endfor %} {% endif %} {% else %}
{% if show_all %}No locks active{% else %}No blocking locks detected{% endif %}
{% endif %}