166 lines
5.1 KiB
PHP
166 lines
5.1 KiB
PHP
<form method="post" name="post_nav_find" action="">
|
|
<input type="hidden" name="jobOfferID" value="">
|
|
<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.jobOfferID.value = value;
|
|
document.post_nav_find.jobID.value = value;
|
|
document.post_nav_find.submit();
|
|
return false;
|
|
}
|
|
// -->
|
|
</script>
|
|
|
|
<!-- Main content -->
|
|
<div class="content-wrapper">
|
|
<?php include('common/userstrip.php'); ?>
|
|
<!-- Main charts -->
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /main charts -->
|
|
<div class="row">
|
|
|
|
<div id="myCarousel" class="carousel slide" data-ride="carousel">
|
|
<!-- Carousel indicators -->
|
|
<ol class="carousel-indicators">
|
|
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
|
|
<li data-target="#myCarousel" data-slide-to="1"></li>
|
|
<li data-target="#myCarousel" data-slide-to="2"></li>
|
|
</ol>
|
|
<!-- Wrapper for carousel items -->
|
|
<div class="carousel-inner">
|
|
<div class="item active">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-flat" style="height: 435px;">
|
|
<div class="panel-heading">
|
|
<h6 class="panel-title"><b><?php echo $dash_title; ?></b></h6>
|
|
</div>
|
|
<?php echo $offer_dash; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-flat" style="height: 435px;">
|
|
<div class="panel-heading">
|
|
<h6 class="panel-title"><b>Active Projects</b></h6>
|
|
</div>
|
|
<?php echo $job_table; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-flat" style="height: 435px;">
|
|
<div class="panel-heading">
|
|
<h6 class="panel-title"><b>Recent Task Message</b></h6>
|
|
</div>
|
|
<?php echo $job_message_table; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--div class="col-md-3">
|
|
<div class="thumbnail">
|
|
<div class="thumb">
|
|
<a href="/proj/active" class="text-default"><img src="assets/images/activeproject_dash.png" alt="Active Projects"></a>
|
|
</div>
|
|
|
|
<div class="caption">
|
|
<h6 class="no-margin-top text-semibold"><a href="/proj/active" class="text-default">My Active Projects</a> <a href="/proj/active" class="text-muted"><i class="icon-download pull-right"></i></a></h6>
|
|
View active project. manage list and communication with deliverables.
|
|
</div>
|
|
</div>
|
|
</div-->
|
|
</div>
|
|
<?php include('common/othermenu.php'); ?>
|
|
<?php //include('common/iconmenu.php'); ?>
|
|
|
|
</div>
|
|
<!-- /main content -->
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
|
|
function showModal(interest_id) {
|
|
if (typeof event !== 'undefined') {
|
|
event.preventDefault();
|
|
}
|
|
// collect data - either from forms or from data variables
|
|
var id = $(this).data('id');
|
|
|
|
// load the modal content with a loader gif and message
|
|
$('#modal-content').html('Loading...');
|
|
|
|
// show modal window
|
|
$('#modal_theme_primary').modal('show');
|
|
|
|
// do the ajax bit
|
|
var post_data = {
|
|
'interest_id': id,
|
|
};
|
|
|
|
$.ajax({
|
|
url: "/jobs/jobinterest_modal?interest_id="+interest_id
|
|
}).done(function (data) {
|
|
//alert(data);
|
|
$('#modal-content').html(data);
|
|
});
|
|
}
|
|
|
|
function showJobModal(contact_id) {
|
|
if (typeof event !== 'undefined') {
|
|
event.preventDefault();
|
|
}
|
|
// collect data - either from forms or from data variables
|
|
var id = $(this).data('id');
|
|
|
|
// load the modal content with a loader gif and message
|
|
$('#modal-content').html('Loading...');
|
|
|
|
// show modal window
|
|
$('#modal_theme_primary').modal('show');
|
|
|
|
// do the ajax bit
|
|
var post_data = {
|
|
'interest_id': id,
|
|
};
|
|
|
|
$.ajax({
|
|
url: "/jobs/jobdetail_modal?contact_id="+contact_id
|
|
}).done(function (data) {
|
|
//alert(data);
|
|
$('#modal-content').html(data);
|
|
});
|
|
}
|
|
|
|
// -->
|
|
</script>
|
|
|
|
|
|
<!-- Basic modal -->
|
|
<div id="modal_theme_primary" class="modal fade">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content" id="modal-content">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /basic modal -->
|