{% extends "base.html" %} {% block title %}Mantis Dashboard - {{ report.seed_url }}{% endblock %} {% block content %}

{{ stats.total_pages }}

Pages Crawled

{{ stats.total_bugs }}

Total Bugs

{{ "%.0f"|format(stats.success_rate) }}%

Success Rate

{{ stats.scanned_at[:10] }}

Scan Date

Crawl Information
Scanned At: {{ stats.scanned_at }}
Bugs by Severity
Bugs by Type
Bug Details {{ report.bugs_total if report else 0 }}
{% if report and report.findings %} {% for bug in report.findings %} {% endfor %} {% else %} {% endif %}
Severity Type Page Summary Impact Actions
{{ bug.severity|title }} {% if bug.type == 'Accessibility' %} {% elif bug.type == 'UI' %} {% elif bug.type == 'Logic' %} {% endif %} {{ bug.type }} {{ bug.page_url }} {{ bug.summary }} {% if bug.impact_description %}
{{ bug.impact_description }} {% endif %}
{% if bug.priority %} {{ bug.priority }} {% endif %} {% if bug.category %} {{ bug.category }} {% endif %}
{% if bug.business_impact %} {{ bug.business_impact }}
{% endif %} {% if bug.wcag_guidelines %} {% for wcag in bug.wcag_guidelines %} WCAG {{ wcag }} {% endfor %} {% endif %}
How to Reproduce
{% if bug.reproduction_steps %}
    {% for step in bug.reproduction_steps %}
  1. {{ step }}
  2. {% endfor %}
{% else %}

We were unable to save the reproduction steps.

{% endif %}
How to Fix
{% if bug.fix_steps %}
    {% for step in bug.fix_steps %}
  1. {{ step }}
  2. {% endfor %}
{% else %}

We were unable to determine the fix steps.

{% endif %}
Technical Details
{% if bug.affected_elements %}
Affected Elements:
{% for element in bug.affected_elements %} {{ element }}
{% endfor %}
{% endif %} {% if bug.technical_details %}
Details:
{{ bug.technical_details }}
{% endif %}
Evidence:
{% if bug.evidence.console_log %} Console log captured
{% endif %} {% if bug.evidence.viewport %} Viewport: {{ bug.evidence.viewport }}
{% endif %} {% if bug.evidence.screenshot_path %} Screenshot captured
{% endif %}
{% if bug.estimated_effort or bug.tags %}
{% if bug.estimated_effort %} Estimated Effort: {{ bug.estimated_effort }}
{% endif %} {% if bug.tags %} Tags:
{% for tag in bug.tags %} {{ tag }} {% endfor %} {% endif %}
{% endif %}
{% if bug.evidence.screenshot_path %}
Screenshot
Bug screenshot
Click to enlarge
{% endif %}
No bugs found yet...
{% if not report or not report.findings %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}