szurubooru/src/Views/log-view.phtml

16 lines
652 B
PHTML
Raw Normal View History

2014-01-27 09:17:36 +01:00
<?php if (empty($this->context->transport->lines)): ?>
2013-11-17 14:39:50 +01:00
<p class="alert alert-warning">This log is empty. <a href="<?php echo \Chibi\UrlHelper::route('log', 'list') ?>">Go back</a></p>
<?php else: ?>
<form action="<?php echo \Chibi\UrlHelper::route('log', 'view', ['name' => $this->context->transport->name]) ?>" method="get">
Keep only lines that contain:
2014-01-27 09:17:36 +01:00
<input type="text" name="query" value="<?php echo $this->context->transport->filter ?>" placeholder="any text&hellip;"/>
2013-11-17 14:39:50 +01:00
</form>
2014-01-27 09:17:36 +01:00
<div class="paginator-content">
<pre><?php echo $this->context->transport->lines ?></pre>
</div>
<?php $this->renderFile('paginator') ?>
2013-11-17 14:39:50 +01:00
<?php endif ?>