{% extends "base.html" %} {% block title %}Website Audits - Hermetic Suite{% endblock %} {% block content %}
Run website audits against domains and URLs
| Target | Status | Results | Duration | Run By | Date | Actions |
|---|---|---|---|---|---|---|
| {{ test.target_domain }} | {% if test.status == 'completed' %} Completed {% elif test.status == 'running' %} Running {% elif test.status == 'failed' %} Failed {% else %} {{ test.status }} {% endif %} | {% if test.status == 'completed' %} {{ test.results_passed }} passed {% if test.results_failed > 0 %} {{ test.results_failed }} failed {% endif %} {% if test.results_warnings > 0 %} {{ test.results_warnings }} warnings {% endif %} {% else %} - {% endif %} | {{ test.duration_seconds or '-' }}s | {{ test.created_by or '-' }} | {{ test.created_at.strftime('%Y-%m-%d %H:%M') }} | View {% if test.report_file %} Download {% endif %} |