mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
fix small differences between working installation and tree
removed header row from appointmentlist.php as it's too space consuming
This commit is contained in:
@@ -47,6 +47,7 @@ include ("../functions/functions.xhtml.php");
|
|||||||
$css = array(
|
$css = array(
|
||||||
"../include/bootstrap-3.3.2/css/bootstrap.min.css",
|
"../include/bootstrap-3.3.2/css/bootstrap.min.css",
|
||||||
//"../include/bootstrap-3.3.2/css/bootstrap-theme.min.css",
|
//"../include/bootstrap-3.3.2/css/bootstrap-theme.min.css",
|
||||||
|
//"../include/font-awesome-4.3.0/css/font-awesome.css",
|
||||||
"../include/clockpicker/dist/bootstrap-clockpicker.min.css",
|
"../include/clockpicker/dist/bootstrap-clockpicker.min.css",
|
||||||
"../css/custom.css"
|
"../css/custom.css"
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ $js = false;
|
|||||||
if (AUTO_LOGOUT_MINUTES !== false)
|
if (AUTO_LOGOUT_MINUTES !== false)
|
||||||
$js = array("include/jquery-ui/js/jquery-1.4.2.min.js","js/childnap.js");
|
$js = array("include/jquery-ui/js/jquery-1.4.2.min.js","js/childnap.js");
|
||||||
|
|
||||||
xhtml_head(T_("Appointment List"),true,array("css/table.css"),$js,false,60);
|
xhtml_head(T_("Appointment List"),false,array("css/table.css"),$js,false,60);
|
||||||
|
|
||||||
//List the case appointment
|
//List the case appointment
|
||||||
// display in respondent time so that the operator will be able to
|
// display in respondent time so that the operator will be able to
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ if (AUTO_LOGOUT_MINUTES !== false)
|
|||||||
$js[] = "js/childnap.js";
|
$js[] = "js/childnap.js";
|
||||||
}
|
}
|
||||||
|
|
||||||
xhtml_head(T_("Status"),false,array("css/status_interface2.css"),$js);
|
xhtml_head(T_("Status"),false,array("include/bootstrap-3.3.2/css/bootstrap.min.css","css/status_interface2.css"),$js);
|
||||||
|
|
||||||
$ca = get_call_attempt($operator_id,false);
|
$ca = get_call_attempt($operator_id,false);
|
||||||
if ($ca)
|
if ($ca)
|
||||||
@@ -173,7 +173,7 @@ if ($ca)
|
|||||||
$apdate = $rs['time'];
|
$apdate = $rs['time'];
|
||||||
|
|
||||||
|
|
||||||
print "<div class='tobecoded statusbox form-group'>" . T_("Appointment") . ": " . $apdate . "</div><div style='clear: both;'/>";
|
print "<div class='tobecoded statusbox'>" . T_("Appointment") . ": " . $apdate . "</div><div style='clear: both;'/>";
|
||||||
//if (missed_appointment($ca)) print "<div class='tobecoded statusbutton'>" . T_("MISSED") . "</div>";
|
//if (missed_appointment($ca)) print "<div class='tobecoded statusbutton'>" . T_("MISSED") . "</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -212,13 +212,13 @@ if ($ca)
|
|||||||
print "<div>";
|
print "<div>";
|
||||||
foreach($rs as $r)
|
foreach($rs as $r)
|
||||||
{
|
{
|
||||||
print "<form method='post' action='?'><div class='text form-group'>";
|
print "<form method='post' action='?'><div class='text'>";
|
||||||
print "<input onclick='this.form.submit();' type='radio' name='contactphone' value='{$r['contact_phone_id']}' id='contactphone{$r['contact_phone_id']}' {$r['checked']}/>";
|
print "<input onclick='this.form.submit();' type='radio' name='contactphone' value='{$r['contact_phone_id']}' id='contactphone{$r['contact_phone_id']}' {$r['checked']}/>";
|
||||||
print "<label for='contactphone{$r['contact_phone_id']}'>{$r['phone']}";
|
print "<label for='contactphone{$r['contact_phone_id']}'>{$r['phone']}";
|
||||||
if ($r['checked']) print " <a href='callto:{$r['phone']}'>" . T_('Dial') . "</a>";
|
if ($r['checked']) print " <a href='callto:{$r['phone']}'>" . T_('Dial') . "</a>";
|
||||||
if (!empty($r['description'])) print " - " . $r['description'];
|
if (!empty($r['description'])) print " - " . $r['description'];
|
||||||
print "</label>";
|
print "</label>";
|
||||||
print "</div></form><br/><br/>";
|
print "</div></form></br>";
|
||||||
}
|
}
|
||||||
print "</div>";
|
print "</div>";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user