miniflux-legacy/app/templates/console.php

14 lines
518 B
PHP

<div class="page-header">
<h2><?php echo t('Console') ?></h2>
<ul>
<li><a href="?action=console"><?php echo t('refresh') ?></a></li>
<li><a href="?action=flush-console"><?php echo t('flush messages') ?></a></li>
</ul>
</div>
<?php if (empty($content)): ?>
<p class="alert alert-info"><?php echo t('Nothing to show. Enable the debug mode to see log messages.') ?></p>
<?php else: ?>
<pre id="console"><code><?php echo Miniflux\Helper\escape($content) ?></code></pre>
<?php endif ?>