|
Last change
on this file since 1090 was
1090,
checked in by moo, 10 months ago
|
|
diagnosis: impl some advises
|
-
Property svn:eol-style set to
native
|
|
File size:
569 bytes
|
| Line | |
|---|
| 1 | <?php include "../common/header.tpl.php"; ?> |
|---|
| 2 | <table cellspacing="0" cellpadding="4" class="cycles"> |
|---|
| 3 | <caption> |
|---|
| 4 | <?php echo _T("Diagnosis Result"); ?> |
|---|
| 5 | </caption> |
|---|
| 6 | <tr> |
|---|
| 7 | <th> |
|---|
| 8 | <?php echo _T("Level"); ?> |
|---|
| 9 | </th> |
|---|
| 10 | <th> |
|---|
| 11 | <?php echo _T("Reason"); ?> |
|---|
| 12 | </th> |
|---|
| 13 | <th> |
|---|
| 14 | <?php echo _T("Suggestion"); ?> |
|---|
| 15 | </th> |
|---|
| 16 | </tr> |
|---|
| 17 | <?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> |
|---|
| 22 | </tr> |
|---|
| 23 | <?php } ?> |
|---|
| 24 | </table> |
|---|
| 25 | <?php include "../common/footer.tpl.php"; ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.