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