diff options
Diffstat (limited to 'app/views/admin/cache/stats.php')
| -rw-r--r-- | app/views/admin/cache/stats.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/views/admin/cache/stats.php b/app/views/admin/cache/stats.php new file mode 100644 index 0000000..9de9baf --- /dev/null +++ b/app/views/admin/cache/stats.php @@ -0,0 +1,15 @@ +<section class="contentbox"> + <header> + <h1><?= _('Cache-Statistiken') ?></h1> + </header> + <br> + <ul> + <? foreach ($stats as $index => $data) : ?> + <li> + <strong><?= htmlReady($index) ?></strong> + <?= $this->render_partial('admin/cache/_stats_entry', ['entry' => $data]) ?> + </li> + <? endforeach ?> + </ul> + <br> +</section> |
