el: '#crawfordList',
collection: crawfordTasks});
- // Crowford County
+ // Charlevoix Library
var chxlibraryTasks = new Tasks([
]);
chxlibraryTasks.url = prefixUrl + '/Dash/fetchTask.php';
el: '#chxlibraryList',
collection: chxlibraryTasks});
+ // Bibco
+ var bibcoTasks = new Tasks([
+ ]);
+ bibcoTasks.url = prefixUrl + '/Dash/fetchTask.php';
+ bibcoTasks.fetch({cache: false, async:true, data: {pid: 4079, t: bTime}});
+ var bibcoList = new TaskListView({
+ el: '#bibcoList',
+ collection: bibcoTasks});
+
+ // Turkeyville
+ var turkeyvilleTasks = new Tasks([
+ ]);
+ turkeyvilleTasks.url = prefixUrl + '/Dash/fetchTask.php';
+ turkeyvilleTasks.fetch({cache: false, async:true, data: {pid: 4085, t: bTime}});
+ var turkeyvilleList = new TaskListView({
+ el: '#turkeyvilleList',
+ collection: turkeyvilleTasks});
+
});
<?php
try {
$dbh = new PDO(
- 'pgsql: host=ds4 dbname=glmdb user=postgres',
+ 'pgsql: host=ds4.gaslightmedia.com dbname=glmdb user=postgres',
null,
null,
array(
case 'in_progress':
$task['status'] = 'In Progress';
break;
- case 'complate':
+ case 'complete':
$task['status'] = 'Complete';
break;
}
</div><!-- /.container-fluid -->
</nav>
<div class="container">
+ <div class="row">
+
+ <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
+ <h3><a href="../project.php?pid=4079" target="_blank">Beaver Island Boat Company</a></h3>
+ <table id="bibcoList"
+ class="table table-condensed table-striped table-bordered table-hover">
+ <thead>
+ <tr>
+ <th>Employee</th>
+ <th>Status</th>
+ <th>Task Name</th>
+ <th>Deadline</th>
+ </tr>
+ </thead>
+ </table>
+ </div>
+ <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
+ <h3><a href="../project.php?pid=4085" target="_blank">Turkeyville</a></h3>
+ <table id="turkeyvilleList"
+ class="table table-condensed table-striped table-bordered table-hover">
+ <thead>
+ <tr>
+ <th>Employee</th>
+ <th>Status</th>
+ <th>Task Name</th>
+ <th>Deadline</th>
+ </tr>
+ </thead>
+ </table>
+ </div>
+
+ </div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">