summaryrefslogtreecommitdiffstats
path: root/etc/problems.html
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2019-04-24 13:19:46 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2019-04-24 13:19:46 +0200
commit41c5a9c5a601733809f15b98a3ba79db8f896518 (patch)
tree8abb20326af0184e08c1fef6aeb566c66b53d31d /etc/problems.html
parentea40d481ad8c68baab770af48d36014facb9cfbb (diff)
Add html templates for generating nice report websites
Diffstat (limited to 'etc/problems.html')
-rw-r--r--etc/problems.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/etc/problems.html b/etc/problems.html
new file mode 100644
index 0000000..bbb66ef
--- /dev/null
+++ b/etc/problems.html
@@ -0,0 +1,28 @@
+<html>
+ <head>
+ <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
+ </head>
+ <body>
+ <table class="pure-table pure-table-horizontal pure-table-striped">
+ <thead>
+ <tr>
+ <th>Repo</th>
+ <th>Package</th>
+ <th>Maintainer</th>
+ <th>Problem</th>
+ </tr>
+ </thead>
+
+ <tbody>
+ {{~#each . as |t|}}
+ <tr>
+ <td>{{t.repo}}</td>
+ <td>{{t.name}}</td>
+ <td>{{t.maintainer}}</td>
+ <td>{{t.problem}}</td>
+ </tr>
+ {{~/each}}
+ </tbody>
+ </table>
+ </body>
+</html>