Clean dash board

This commit is contained in:
dev-chiefworks
2022-03-12 01:23:00 -05:00
parent 0a77fba7af
commit 1ce07e5c02
4 changed files with 10 additions and 116 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ class Bko_Controller extends WRB_Controller {
// PUBIC active JOB table
$mysql = "SELECT jo.expire,jo.id AS offer_id, jo.offer_code,mj.title,mj.description,mj.timeline_days,mj.price,jo.job_description FROM members_jobs_offer jo "
$mysql = "SELECT jo.offer_code||'<br><b>Exp: </b>'||jo.expire AS det1,jo.id AS offer_id,'<b>'||mj.title||'</b><br>'||mj.description,'<b>Timeline:</b>'||mj.timeline_days||'day(s)<br><b>Price:</b>'||mj.price*0.01||' #$?' AS det2 FROM members_jobs_offer jo "
. " LEFT JOIN members_jobs mj ON mj.id=jo.job_id "
. " WHERE mj.status=1 AND jo.status=1 "
. " AND jo.expire> now() AND jo.public_view > 0";