diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json index 28e091e..a354825 100755 --- a/Admin/Install/Navigation.install.json +++ b/Admin/Install/Navigation.install.json @@ -5,7 +5,7 @@ "type": 2, "subtype": 1, "name": "Exchange", - "uri": "{/prefix}admin/exchange/dashboard?{?}", + "uri": "{/prefix}admin/exchange/log/list?{?}", "target": "self", "icon": null, "order": 50, diff --git a/Theme/Backend/exchange-log.tpl.php b/Theme/Backend/exchange-log.tpl.php index e69de29..f383271 100644 --- a/Theme/Backend/exchange-log.tpl.php +++ b/Theme/Backend/exchange-log.tpl.php @@ -0,0 +1,39 @@ +getData('log'); + +echo $this->getData('nav')->render(); +?> +
| = $this->getHtml('ID', '0', '0'); ?> | = $log->getId(); ?> + |
| = $this->getHtml('Type'); ?> | = $log->getType(); ?> + |
| = $this->getHtml('Subtype'); ?> | = $log->subtype; ?> + |
| = $this->getHtml('Created'); ?> | = $log->createdAt->format('Y-m-d'); ?> + |
| = $this->getHtml('Creator'); ?> | = $log->createdBy->name1; ?> + |
| = $log->message; ?> + | |