2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

cosmetic and equalization with working branch

This commit is contained in:
Alex
2015-05-20 15:35:02 +03:00
parent 485b6ded38
commit b2a0602fd5
11 changed files with 59 additions and 69 deletions

View File

@@ -67,7 +67,7 @@ if (AUTO_LOGOUT_MINUTES !== false)
$js[] = "js/childnap.js";
}
xhtml_head(T_("Status"),true,array("css/status_interface2.css"),$js);
xhtml_head(T_("Status"),false,array("css/status_interface2.css"),$js);
$ca = get_call_attempt($operator_id,false);
if ($ca)
@@ -76,7 +76,7 @@ if ($ca)
$case_id = get_case_id($operator_id);
$fname = get_respondent_variable("firstName",$respondent_id);
$lname = get_respondent_variable("lastName",$respondent_id);
print "<p class='text'>" . T_("Name") . ": $fname $lname</p>";
print "<h4>" . T_("Name") . ": $fname $lname</h4>";
$appointment = is_on_appointment($ca);
@@ -173,7 +173,7 @@ if ($ca)
$apdate = $rs['time'];
print "<div class='tobecoded statusbox'>" . T_("Appointment") . ": " . $apdate . "</div><div style='clear: both;'/>";
print "<div class='tobecoded statusbox form-group'>" . 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'>";
print "<form method='post' action='?'><div class='text form-group'>";
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>";
print "</div></form><br/><br/>";
}
print "</div>";
}