File: /home/slfopp7cb1df/www/pm/app/Views/projects/timesheets/stop_timer_modal_form.php
<?php echo form_open(get_uri("projects/timer/" . $project_id . "/stop"), array("id" => "stop-timer-form", "class" => "general-form", "role" => "form")); ?>
<input type="hidden" name="task_id" value="<?php echo $task_id; ?>" />
<div class="modal-body clearfix">
<div class="container-fluid">
<div class="form-group">
<label for="note" class=" col-md-12"><?php echo app_lang('note'); ?></label>
<div class=" col-md-12">
<?php
echo form_textarea(array(
"id" => "note",
"name" => "note",
"class" => "form-control",
"placeholder" => app_lang('note'),
"data-rich-text-editor" => true
));
?>
</div>
</div>
<?php if (!$open_task_id) { ?>
<div class="form-group">
<label for="task" class="col-md-12"><?php echo app_lang('task'); ?> </label>
<div class="col-md-12">
<?php
echo form_dropdown("task_id", $tasks_dropdown, $task_id, "class='select2'");
?>
</div>
</div>
<?php } ?>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-bs-dismiss="modal"><span data-feather="x" class="icon-16"></span> <?php echo app_lang('close'); ?></button>
<button type="submit" class="btn btn-primary"><span data-feather="check-circle" class="icon-16"></span> <?php echo app_lang('save'); ?></button>
</div>
<?php echo form_close(); ?>
<script type="text/javascript">
$(document).ready(function () {
$("#stop-timer-form").appForm({
onSuccess: function (result) {
if (window.existingUrl) {
window.location.href = window.existingUrl;
} else {
location.reload();
}
}
});
$("#stop-timer-form .select2").select2();
setTimeout(function () {
$("#note").focus();
}, 200);
});
</script>