Add base HTML report template

This commit is contained in:
2026-01-29 17:57:15 +00:00
parent af3116a025
commit 3a8e6becf1

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Test Report{% endblock %}</title>
<style>
{{ css_content }}
</style>
</head>
<body>
<header class="report-header">
<div class="logo-block">
{% if logo_base64 %}
<img src="data:image/png;base64,{{ logo_base64 }}" alt="Company Logo" class="logo">
{% endif %}
</div>
<div class="title-block">
<h1>{% block header_title %}Test Report{% endblock %}</h1>
<div class="subtitle">{{ company_name }}</div>
</div>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer class="report-footer">
<p>Generated by py_dvt_ate v{{ version }} on {{ generated_at }}</p>
<p>{{ company_name }}</p>
</footer>
</body>
</html>