blob: 3cdf95bfcbe95be51d3cd186ff79c9a991b92e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<form id="info_search" action="<?= $action ?>" method="post" role="search">
<script>
var submitInfoSearch = function () {
jQuery('#info_search').submit();
};
</script>
<?= $search ?>
<? if ($reset) : ?>
<a href="<?= $reset ?>"><?= Icon::create('refresh', 'clickable', ['title' => _('Suche zurücksetzen')])->asSvg(); ?></a>
<? endif; ?>
</form>
|