aboutsummaryrefslogtreecommitdiff
path: root/app/views/calendar/single/_jump_to.php
blob: b5e96bb21dea10779aba54903930b5a6dcc07dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<form class="default" action="<?= $action_url ?>" method="post" name="jump_to">
    <input type="hidden" name="action" value="<?= $action ?>">

    <section class="hgroup">
        <?= _('Gehe zu:') ?>
        <input size="10" style="width: 16em;" type="text" id="jmp_date" name="jmp_date" type="text" value="<?= strftime('%x', $atime)?>">
        <?= Icon::create('accept', 'clickable')->asInput(['class' => 'text-top']) ?>
    </section>
</form>

<script>
    jQuery('#jmp_date').datepicker();
</script>