2
0
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:
Alex
2015-07-08 11:52:42 +03:00
parent bb6943d386
commit b25b661a62
3 changed files with 6 additions and 5 deletions

View File

@@ -47,6 +47,7 @@ include ("../functions/functions.xhtml.php");
$css = array(
"../include/bootstrap-3.3.2/css/bootstrap.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",
"../css/custom.css"
);

View File

@@ -53,7 +53,7 @@ $js = false;
if (AUTO_LOGOUT_MINUTES !== false)
$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
// display in respondent time so that the operator will be able to

View File

@@ -67,7 +67,7 @@ if (AUTO_LOGOUT_MINUTES !== false)
$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);
if ($ca)
@@ -173,7 +173,7 @@ if ($ca)
$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>";
}
@@ -212,13 +212,13 @@ if ($ca)
print "<div>";
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 "<label for='contactphone{$r['contact_phone_id']}'>{$r['phone']}";
if ($r['checked']) print "&emsp;<a href='callto:{$r['phone']}'>" . T_('Dial') . "</a>";
if (!empty($r['description'])) print " - " . $r['description'];
print "</label>";
print "</div></form><br/><br/>";
print "</div></form></br>";
}
print "</div>";
}