Changeset 1092 for trunk/htdocs/diagnosis/diagnosis.tpl.php
- Timestamp:
- 2012-07-31T11:22:10+02:00 (11 months ago)
- File:
-
- 1 edited
-
trunk/htdocs/diagnosis/diagnosis.tpl.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/diagnosis/diagnosis.tpl.php
r1090 r1092 1 1 <?php include "../common/header.tpl.php"; ?> 2 <table cellspacing="0" cellpadding="4" class="cycles" >2 <table cellspacing="0" cellpadding="4" class="cycles" id="diagnosisResult"> 3 3 <caption> 4 4 <?php echo _T("Diagnosis Result"); ?> … … 6 6 <tr> 7 7 <th> 8 <?php echo _T("Item"); ?> 9 </th> 10 <th> 8 11 <?php echo _T("Level"); ?> 9 12 </th> 10 13 <th> 11 <?php echo _T("Re ason"); ?>14 <?php echo _T("Result"); ?> 12 15 </th> 13 16 <th> 14 <?php echo _T(" Suggestion"); ?>17 <?php echo _T("Result/Suggestion"); ?> 15 18 </th> 16 19 </tr> 17 20 <?php foreach ($notes as $note) { ?> 18 <tr> 19 <td><?php echo ucfirst($note['type']); ?></td> 20 <td><?php echo $note['reason']; ?></td> 21 <td><?php echo $note['suggestion']; ?></td> 21 <tr class="<?php echo $note['type']; ?>"> 22 <td nowrap="nowrap" align="right"><?php echo $note['item']; ?></td> 23 <td nowrap="nowrap"><?php echo ucfirst($note['type']); ?></td> 24 <td nowrap="nowrap"><?php echo nl2br($note['result']); ?></td> 25 <td><?php echo nl2br($note['suggestion']); ?></td> 22 26 </tr> 23 27 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.

