Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <% resultList.forEach(function(item, index){ %>
  2. <tr>
  3. <td><%= item.function %></td>
  4. <% if (item.value === false) { %>
  5. <td style='color:red;'><%= item.value %></td>
  6. <% else %>
  7. <td><%= item.value %></td>
  8. <% } %>
  9. <td><%= item.content %></td>
  10. </tr>
  11. <% }); %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement