miniflux-legacy/app/templates/console.php

14 lines
483 B
PHP
Raw Normal View History

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)): ?>
<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: ?>
2016-08-25 03:17:58 +02:00
<pre id="console"><code><?= Miniflux\Helper\escape($content) ?></code></pre>
2013-08-30 01:34:11 +02:00
<?php endif ?>