94 lines
2.9 KiB
PHP
94 lines
2.9 KiB
PHP
<!-- Main content -->
|
|
<form method="post" name="post_nav_find" action="">
|
|
<input type="hidden" name="jobID" value="">
|
|
</form>
|
|
<script type="text/javascript">
|
|
<!--
|
|
function post_nav_find_action(what, value) {
|
|
// alert(what);
|
|
document.post_nav_find.action = what + '';
|
|
document.post_nav_find.jobID.value = value;
|
|
document.post_nav_find.submit();
|
|
return false;
|
|
}
|
|
|
|
function post_nav_del_action(what, value) {
|
|
// alert(what);
|
|
document.post_nav_find.action = what + '';
|
|
document.post_nav_find.jobID.value = value;
|
|
document.post_nav_find.submit();
|
|
return false;
|
|
}
|
|
// -->
|
|
</script>
|
|
<div class="content-wrapper">
|
|
<!-- Quick stats boxes -->
|
|
<?php include('common/jobstrip.php'); ?>
|
|
<!-- /quick stats boxes -->
|
|
|
|
<!-- Marketing campaigns -->
|
|
<div class="panel panel-flat">
|
|
<div class="panel-heading">
|
|
|
|
<!--div class="btn-group btn-group-justified">
|
|
<a href="#" class="btn bg-slate-700">Left</a>
|
|
<a href="#" class="btn bg-slate-700">Middle</a>
|
|
<a href="#" class="btn bg-slate-700">Right</a>
|
|
</div -->
|
|
|
|
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<p><a class="btn btn-secondary btn-xs btn-block" href="/jobs/manage">My Job(s)</a></p>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<p><a class="btn btn-success btn-xs btn-block" href="/jobs/create">Create Job</a></p>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<p><a class="btn btn-info btn-xs btn-block" href="/proj/complete">Completed Jobs(s)</a></p>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<p><a class="btn btn-warning btn-xs btn-block" href="/proj/pastdue">Past Due</a></p>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="table-responsive" style='height: 550px;'>
|
|
<?php echo $job_table ?>
|
|
<div class="panel-heading">
|
|
<?php echo $links; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /marketing campaigns -->
|
|
</div>
|
|
<!-- /main content -->
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
function deleteJob(link_id) {
|
|
if (confirm("Are you sure you want to delete this task?")) {
|
|
// do something
|
|
} else {
|
|
return false;
|
|
}
|
|
//$('#subdel'+link_id).html('Processing...');
|
|
$('#dacc' + link_id).prop('disabled', true);
|
|
$.ajax({
|
|
url: "/jobs/deletejob?proc=DELETE&job_id=" + link_id
|
|
}).done(function (data) {
|
|
$('#subdel' + link_id).html(data);
|
|
document.offer_individual.rec_email.value = '';
|
|
$('#dacc' + link_id).prop('disabled', false);
|
|
});
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
|
|
// -->
|
|
</script>
|