aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/timeline.php
blob: 7ba2fbf8276ca0df9939a8f48cb49fdbafef0115 (plain)
1
2
3
4
5
6
7
8
9
10
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();
    }
});