ReportGeneration/PythonReportGeneration/input/excel_base_template.html

28 lines
613 B
HTML
Raw Normal View History

2024-08-01 17:06:39 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Base Template{% endblock %}</title>
<style>
body {
font-family: Arial, sans-serif;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 8px;
text-align: left;
}
</style>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>