Line 75... |
Line 75... |
75 |
} // if..else
|
75 |
} // if..else
|
76 |
} // if $xenRelationships
|
76 |
} // if $xenRelationships
|
77 |
#$title = removeBlankLines(cleanLineReturn( $title ));
|
77 |
#$title = removeBlankLines(cleanLineReturn( $title ));
|
78 |
|
78 |
|
79 |
// put the stuff to convert notes to correct format,
|
79 |
// put the stuff to convert notes to correct format,
|
80 |
print "<tr><td colspan='20'><table width='100%' border='1' class='header-table sibling-hide'><tr><td align='left' width='33%' class='activator'>$currentDevice</td><td width='33%' class='hidden'>$title</td><td width='33%' class='hidden'>$restrictions</td></tr></table></td></tr>\n";
|
80 |
print "<tr><td colspan='20'><table width='100%' border='1' class='sibling-hide header-table'><tr><td align='left' width='33%' class='activator'>$currentDevice</td><td width='33%' class='hidden'>$title</td><td width='33%' class='hidden'>$restrictions</td></tr></table></td></tr>\n";
|
81 |
}
|
81 |
}
|
82 |
?>
|
82 |
?>
|
83 |
<tr>
|
83 |
<tr>
|
84 |
<td valign='top' width='50' align='right'>
|
84 |
<td valign='top' width='50' align='right'>
|
85 |
<INPUT type='checkbox' name='performed_<?php print $thisRow['ID']; ?>'>
|
85 |
<INPUT type='checkbox' name='performed_<?php print $thisRow['ID']; ?>'>
|
Line 91... |
Line 91... |
91 |
<textarea name="notes_<?php print $thisRow['ID']; ?>" cols="20" rows="1"></textarea>
|
91 |
<textarea name="notes_<?php print $thisRow['ID']; ?>" cols="20" rows="1"></textarea>
|
92 |
</td>
|
92 |
</td>
|
93 |
<td valign='top' title="<?php print htmlentities($thisRow['Task Notes']); ?>">
|
93 |
<td valign='top' title="<?php print htmlentities($thisRow['Task Notes']); ?>">
|
94 |
<?php print $thisRow['Task']; ?>
|
94 |
<?php print $thisRow['Task']; ?>
|
95 |
</td>
|
95 |
</td>
|
96 |
<td valign='top'>
|
96 |
<td valign='top' <?php print $thisRow['Due'] < 0 ? ( $thisRow['Due'] < -30 ? "class='alert'" : "class='past-due'" ) : ''; ?>>
|
97 |
<?php print $thisRow['Date Due'] . ' (' . $thisRow['Due'] . ' days)'; ?>
|
97 |
<?php print $thisRow['Date Due'] . ' (' . $thisRow['Due'] . ' days)'; ?>
|
98 |
</td>
|
98 |
</td>
|
99 |
<td valign='top'>
|
99 |
<td valign='top'>
|
100 |
<select name="technician_<?php print $thisRow['ID']; ?>">
|
100 |
<select name="technician_<?php print $thisRow['ID']; ?>">
|
101 |
<?php print queryToSelect(getTechs(), "select " . $_SESSION['login_id'] ); ?>
|
101 |
<?php print queryToSelect(getTechs(), "select " . $_SESSION['login_id'] ); ?>
|