HTML tag closes when inside a condition
- by Malharhak
I'm having a little problem with jade. Here is the following code :
each user in users
- if (user.valid == 1)
tr(style="color:green;")
- else
tr(style="color:red;")
td
= user.mail
td
= user.lastIp
td
= user.token
td
= user.valid
My problem is that the tds are created only in the else case. if the if (user.valid == 1) is true, then it creates an empty tr.
Is there a way I can create my tr with this condition, and then only fill them ?
Thanks :)