{% extends "base.html" %} {% block title %}Secret Scanning — All Findings — secfoo{% endblock %} {% block content %} ← Back to Secret Scanning Secret Scanning

All findings

{% if findings %}
{% for f in findings %} {% endfor %}
ProjectSeveritySecret typeLocationSourceValidity
{{ f.project_display_name }} {{ f.severity }} {{ f.secret_type }} {{ f.location }} {{ f.source }} {% if f.validity.lower() == 'looks live' %}{{ f.validity }} {% else %}{{ f.validity }}{% endif %}
{% else %}
No findings{% if selected_project_id %} for this project{% endif %}.
{% endif %} {% endblock %}