Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does play framework 2.0 support nested if statement in template ?

I using the following code, but the rendered html is this ""

// template

<tr class=@if(e.error1!=""){"error"} 
        else if(e.statusDetail.contains("failure")){"warning"} 
        else{"info"} >

// generated html

<tr class= 
        else if(e.statusDetail.contains("failure")){"warning"} 
        else{"info"} >
share|improve this question

1 Answer

up vote 1 down vote accepted

Currently it is unsupported: https://play.lighthouseapp.com/projects/82401/tickets/783-else-if-statement-missing-in-the-scala-template

You can use pattern matching or if bolck inside else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.