aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/timeline.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/timeline.php')
-rw-r--r--templates/timeline.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/timeline.php b/templates/timeline.php
new file mode 100644
index 0000000..7ba2fbf
--- /dev/null
+++ b/templates/timeline.php
@@ -0,0 +1,11 @@
+<?php call_template('skeleton', ['pageTitle' => __("timeline.$kind")], function () {
+ global $items, $kind;
+ call_template('alertbox', [
+ 'variety' => 'info',
+ 'message' => __("timeline.$kind.description")
+ ]);
+ foreach ($items as $item) {
+ $item->getReason()?->renderAsHtml();
+ $item->getObject()->renderAsHtml();
+ }
+}); \ No newline at end of file