Created
April 19, 2013 20:36
-
-
Save adam8810/5423049 to your computer and use it in GitHub Desktop.
Email Friendly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
</head> | |
<body style="font-family: arial"> | |
<h1 style="font-family: 'Arial Black'"><?php echo $task_name; ?> Completed</h1> | |
<table style="border:1px solid #999; padding:2px"> | |
<tr style="background: #333; color: #FFF;"> | |
<td style="padding:5px;border-right:1px solid #999;border-bottom:1px solid #999;"><strong>Location:</strong></td> | |
<td style="padding:5px;border-bottom:1px solid #999;"><?php echo $assemblyline_name; ?></td> | |
</tr> | |
<tr> | |
<td style="padding:5px;border-right:1px solid #999;border-bottom:1px solid #999;"><strong>Unit Number:</strong></td> | |
<td style="padding:5px;border-bottom:1px solid #999;"><?php echo $asset_number; ?></td> | |
</tr> | |
<tr style="background:#EEE"> | |
<td style="padding:5px;border-right:1px solid #999;border-bottom:1px solid #999;"><strong>Task:</strong></td> | |
<td style="padding:5px;border-bottom:1px solid #999;"><?php echo $task_name; ?></td> | |
</tr> | |
<tr> | |
<td style="padding:5px;border-right:1px solid #999;border-bottom:1px solid #999;"><strong>Tech Name:</strong></td> | |
<td style="padding:5px;border-bottom:1px solid #999;"><?php echo $tech_name; ?></td> | |
</tr> | |
<tr style="background:#EEE"> | |
<td style="padding:5px;border-right:1px solid #999;"><strong>Time Completed:</strong></td> | |
<td style="padding:5px;"><?php echo $date; ?></td> | |
</tr> | |
</table> | |
<h2>Send to Next Location:</h2> | |
<p><strong>Note:</strong> Technicians will not see this unit until it is moved to their location in the system.</p> | |
<table width="100%" style="max-width: 600px;"> | |
<tbody> | |
<?php foreach ($assemblylines as $a): ?> | |
<tr> | |
<td style="font-size: 30px;background:orange"><a style="display:block;text-decoration: none; text-align: center; color:#FFF; width:100%; height:100%;padding:20px 0;" href="<?php echo Uri::base();?>unit/<?php echo $a['id'];?>"><?php echo $a['name'];?></a></td> | |
</tr> | |
<tr height="10px"></tr> | |
<?php endforeach; ?> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment