summaryrefslogtreecommitdiffstats
path: root/etc/problems.html
diff options
context:
space:
mode:
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>