Commit a46b26b3 by Luciano Baraglia

requirements: TD html fix - added SPAN in result TD

parent 774a7b52
...@@ -56,8 +56,8 @@ ...@@ -56,8 +56,8 @@
<td> <td>
<?php echo $requirement['name']; ?> <?php echo $requirement['name']; ?>
</td> </td>
<td > <td>
<?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?> <span class="result"><?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?></span>
</td> </td>
<td> <td>
<?php echo $requirement['by']; ?> <?php echo $requirement['by']; ?>
...@@ -79,4 +79,4 @@ ...@@ -79,4 +79,4 @@
</div> </div>
</div> </div>
</body> </body>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment