i have two lists
cards=List[Card]
paymentMode=List[String]
i want to loop over them simultaneously in Twirl template engine (Play Framework) i tried
(cards zip paymentMode).map{ case (card, p) =>
and when i call @card
i got "not found: value card"
Ok lets first look at Scala and then Twirl. So you have we have two lists:
Then zip them together (I assume lists are with the same length):
After this you can have a for loop to go through it:
In Twirl: In your views you can have something like the following (make note on how to define a val and use a for loop and how I use
@
as escape character or as a reference):And the following is the output I'm getting within in the browser: