31 lines
1.4 KiB
HTML
31 lines
1.4 KiB
HTML
<script type="text/javascript">
|
|
function set_to_now(id) {
|
|
var now = new Date();
|
|
document.getElementById(id + '_time').value = now.getHours() + ':' + now.getMinutes();
|
|
var days = document.getElementById(id + '_day').getElementsByTagName('option');
|
|
for(var i = 0; i < days.length; i++) {
|
|
if(days[i].value == (1900 + now.getYear()) + '-' + (1 + now.getMonth()) + '-' + now.getDate())
|
|
days[i].selected = true;
|
|
}
|
|
}
|
|
</script>
|
|
<form action="#shifts" method="get">
|
|
<fieldset class="form" id="filter"><legend>%filter%</legend>
|
|
<div>
|
|
%start_select% <input type="time" id="start_time" name="start_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%start_time%"> <img src="pic/icons/clock.png" alt="Now" title="Now" style="cursor: pointer;vertical-align: middle;" onclick="set_to_now('start');">
|
|
– %end_select% <input type="time" id="end_time" name="end_time" size="5" pattern="^\d{1,2}:\d{2}$" placeholder="HH:MM" maxlength="5" value="%end_time%"> <img src="pic/icons/clock.png" alt="Now" title="Now" style="cursor: pointer;vertical-align: middle;" onclick="set_to_now('end');">
|
|
</div>
|
|
<input type="hidden" name="p" value="user_shifts">
|
|
%room_select%
|
|
%type_select%
|
|
%filled_select%
|
|
<div>%task_notice%</div>
|
|
<div>%new_style_checkbox%</div>
|
|
<input class="button" type="submit" style="width: 100%;" value="%filter%">
|
|
</fieldset>
|
|
</form>
|
|
|
|
%shifts_table%
|
|
|
|
%ical_text%
|