2013-08-30 01:34:11 +02:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Console') ?></h2>
|
|
|
|
<ul>
|
|
|
|
<li><a href="?action=console"><?= t('refresh') ?></a></li>
|
|
|
|
<li><a href="?action=flush-console"><?= t('flush messages') ?></a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php if (empty($content)): ?>
|
2015-01-29 03:57:34 +01:00
|
|
|
<p class="alert alert-info"><?= t('Nothing to show. Enable the debug mode to see log messages.') ?></p>
|
2013-08-30 01:34:11 +02:00
|
|
|
<?php else: ?>
|
|
|
|
<pre id="console"><code><?= Helper\escape($content) ?></code></pre>
|
|
|
|
<?php endif ?>
|