Adding a HTML report system with a default template engine based on Text::Template

This commit is contained in:
Jean-Marie RENOUARD 2015-08-26 15:23:19 +02:00
parent e2182f17b0
commit f06212d18f
2 changed files with 603 additions and 476 deletions

File diff suppressed because it is too large Load diff

15
template_example.tpl Normal file
View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Report Example</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Result output</h1>
<pre>
{$data}
</pre>
</body>
</html>