diff options
Diffstat (limited to 'app/Resources/views/default/AllDataPage.html.twig')
-rw-r--r-- | app/Resources/views/default/AllDataPage.html.twig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app/Resources/views/default/AllDataPage.html.twig b/app/Resources/views/default/AllDataPage.html.twig new file mode 100644 index 0000000..7851afb --- /dev/null +++ b/app/Resources/views/default/AllDataPage.html.twig @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Title</title> +</head> +<body> +<table> + <tr> + <th>TimeStamp</th> + <th>Co</th> + <th>No</th> + <th>So</th> + </tr> + <tr> + {% for table in data %} + <td>{{ table.TimeStamp }}</td> + <td>{{ table.Co }}</td> + <td>{{ table.No }}</td> + <td>{{ table.So }}</td> + </tr> + {% endfor %} +</table> +</body> +</html>
\ No newline at end of file |